diff options
author | Gerry Weißbach <gerry.w@gammaproduction.de> | 2015-04-14 10:12:02 +0200 |
---|---|---|
committer | Gerry Weißbach <gerry.w@gammaproduction.de> | 2015-04-14 10:12:02 +0200 |
commit | a7ec353091498e86d606c27f5ca7a808c2d096c0 (patch) | |
tree | 30ccfd0c312a06dc2d6bf45bfe70f9c26615e172 /lib/plugins/extension/script.js | |
parent | 803a90da0d25c98cd07fc138c940fdd5df1dec7e (diff) | |
download | dokuwiki-a7ec353091498e86d606c27f5ca7a808c2d096c0.tar.gz dokuwiki-a7ec353091498e86d606c27f5ca7a808c2d096c0.zip |
Add display options to extension manger
Allows tho show/hide extensions that are: enabled, disabled, updatable
Diffstat (limited to 'lib/plugins/extension/script.js')
-rw-r--r-- | lib/plugins/extension/script.js | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/lib/plugins/extension/script.js b/lib/plugins/extension/script.js index fab88162d..43af21ee1 100644 --- a/lib/plugins/extension/script.js +++ b/lib/plugins/extension/script.js @@ -110,4 +110,10 @@ jQuery(function(){ ); }); -});
\ No newline at end of file + /** + * Enable all plugin types + */ + $extmgr.find( '#viewoptions :checkbox' ).change(function(){ + jQuery('#extension__list').toggleClass( this.name ); + }).click(); +}); |