fu: Close-up of Fu, bringing a scoop of water to her mouth (Default)
fu ([personal profile] fu) wrote in [site community profile] changelog2011-11-04 11:22 am

[dw-free] Revamp /update

[commit: http://hg.dwscoalition.org/dw-free/rev/ac30d2bcf09a]

http://bugs.dwscoalition.org/show_bug.cgi?id=2524

Don't show inactive components...

Patch by [personal profile] fu.

Files modified:
  • htdocs/js/jquery.postform.js
--------------------------------------------------------------------------------
diff -r 9e9c728529ff -r ac30d2bcf09a htdocs/js/jquery.postform.js
--- a/htdocs/js/jquery.postform.js	Fri Nov 04 19:22:03 2011 +0800
+++ b/htdocs/js/jquery.postform.js	Fri Nov 04 19:23:02 2011 +0800
@@ -43,9 +43,9 @@
 
         $("#post_entry").bind( "journalselect", function( e, journal ) {
             if ( journal.name ) {
-                $("#icons_component").slideDown()
+                $("#icons_component").not(".inactive_component").slideDown()
             } else {
-                $("#icons_component").slideUp()
+                $("#icons_component").not(".inactive_component").slideUp()
             }
         });
     }
--------------------------------------------------------------------------------