App-Folders icon indicating copy to clipboard operation
App-Folders copied to clipboard

Clicking the close link $('.jaf-close') does not reset opacity of all folders.

Open quintusl opened this issue 12 years ago • 0 comments

This patch should help:

index 670b1d6..8230623 100644
--- jquery.app-folders.js.orig
+++ jquery.app-folders.js
@@ -196,6 +196,12 @@

                                //Reset the margin-top for the container
                                $(this).parent().parent().animate({ marginTop: settings.marginTopBase }, settings.animationSpeed );
+        
+        //Reset opacity
+                               $(".jaf-container").find(".folder").each(function() {
+                                       $(this).animate({ opacity: 1.00 }, settings.animationSpeed);
+                               });
+
                        });

quintusl avatar Jul 16 '13 10:07 quintusl