Browse Source

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

REJack 5 years ago
parent
commit
d204bc1e3c
3 changed files with 4 additions and 4 deletions
  1. 2 2
      build/js/Tree.js
  2. 2 2
      dist/js/adminlte.js
  3. 0 0
      dist/js/adminlte.min.js

+ 2 - 2
build/js/Tree.js

@@ -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);
 

+ 2 - 2
dist/js/adminlte.js

@@ -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 it is too large
+ 0 - 0
dist/js/adminlte.min.js


Some files were not shown because too many files changed in this diff