[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
fu.
Files modified:
http://bugs.dwscoalition.org/show_bug.cgi?id=2524
Don't show inactive components...
Patch by
![[personal profile]](https://www.dreamwidth.org/img/silk/identity/user.png)
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() } }); } --------------------------------------------------------------------------------