Browse Source

Fixed changed ranges not being deletable

css_transitions
jos 10 years ago
parent
commit
186ed376b3
2 changed files with 4 additions and 4 deletions
  1. +2
    -2
      dist/vis.js
  2. +2
    -2
      src/timeline/component/ItemSet.js

+ 2
- 2
dist/vis.js View File

@ -5060,7 +5060,7 @@ ItemSet.prototype._checkIfInvisible = function _checkIfInvisible(item) {
* this function is very similar to the _checkIfInvisible() but it does not return booleans, hides the item if it should not be seen and always adds to the visibleItems.
* this one is for brute forcing and hiding.
*
* @param {itemRange | itemPoint | itemBox} item
* @param {Item} item
* @param {array} visibleItems
* @private
*/
@ -5332,7 +5332,7 @@ ItemSet.prototype._onUpdate = function _onUpdate(ids) {
}
me.items[id] = item;
if (type == 'range') {
if (type == 'range' && me.visibleItems.indexOf(item) == -1) {
me._checkIfVisible(item, me.visibleItems);
}
});

+ 2
- 2
src/timeline/component/ItemSet.js View File

@ -331,7 +331,7 @@ ItemSet.prototype._checkIfInvisible = function _checkIfInvisible(item) {
* this function is very similar to the _checkIfInvisible() but it does not return booleans, hides the item if it should not be seen and always adds to the visibleItems.
* this one is for brute forcing and hiding.
*
* @param {itemRange | itemPoint | itemBox} item
* @param {Item} item
* @param {array} visibleItems
* @private
*/
@ -603,7 +603,7 @@ ItemSet.prototype._onUpdate = function _onUpdate(ids) {
}
me.items[id] = item;
if (type == 'range') {
if (type == 'range' && me.visibleItems.indexOf(item) == -1) {
me._checkIfVisible(item, me.visibleItems);
}
});

Loading…
Cancel
Save