delete queue after successful delete request to prevent addtional delete when the next item is deleted

This commit is contained in:
Bernhard Posselt 2013-04-27 11:34:40 +02:00
Родитель 9d78516855
Коммит 95ead2f0da
3 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -57,6 +57,7 @@ angular.module('News').factory 'UndoQueue',
@_queue = []
promise: @_$timeout =>
command.execute()
@_queue = []
@_$rootScope.$broadcast('notUndone')
, @_timeout

Просмотреть файл

@ -3178,6 +3178,7 @@ License along with this library. If not, see <http://www.gnu.org/licenses/>.
},
promise: this._$timeout(function() {
command.execute();
_this._queue = [];
return _this._$rootScope.$broadcast('notUndone');
}, this._timeout)
};

Просмотреть файл

@ -13,7 +13,7 @@
axis: 'y',
delay: 200,
helper: 'clone',
containment: 'window',
containment: 'document',
scroll: true,
scrollSensitivity: 100
}">