App-Folders
App-Folders copied to clipboard
Clicking the close link $('.jaf-close') does not reset opacity of all folders.
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);
+ });
+
});