enhanced tree collapse/expand to avoid flood slide animation on multiple clicks on one item

pull/2268/head
REJack 5 years ago
parent 78f4a4391d
commit d204bc1e3c
No known key found for this signature in database
GPG Key ID: 9F3976CC630CC888

@ -82,7 +82,7 @@
}
parent.addClass(ClassName.open);
tree.slideDown(this.options.animationSpeed, function () {
tree.stop().slideDown(this.options.animationSpeed, function () {
$(this.element).trigger(expandedEvent);
parent.height('auto');
}.bind(this));
@ -93,7 +93,7 @@
//tree.find(Selector.open).removeClass(ClassName.open);
parentLi.removeClass(ClassName.open);
tree.slideUp(this.options.animationSpeed, function () {
tree.stop().slideUp(this.options.animationSpeed, function () {
//tree.find(Selector.open + ' > ' + Selector.treeview).slideUp();
$(this.element).trigger(collapsedEvent);

@ -909,7 +909,7 @@ throw new Error('AdminLTE requires jQuery')
}
parent.addClass(ClassName.open);
tree.slideDown(this.options.animationSpeed, function () {
tree.stop().slideDown(this.options.animationSpeed, function () {
$(this.element).trigger(expandedEvent);
parent.height('auto');
}.bind(this));
@ -920,7 +920,7 @@ throw new Error('AdminLTE requires jQuery')
//tree.find(Selector.open).removeClass(ClassName.open);
parentLi.removeClass(ClassName.open);
tree.slideUp(this.options.animationSpeed, function () {
tree.stop().slideUp(this.options.animationSpeed, function () {
//tree.find(Selector.open + ' > ' + Selector.treeview).slideUp();
$(this.element).trigger(collapsedEvent);

File diff suppressed because one or more lines are too long
Loading…
Cancel
Save