aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/lib/plugins/extension/script.js
diff options
context:
space:
mode:
authorGerry Weißbach <gerry.w@gammaproduction.de>2015-04-14 10:12:02 +0200
committerGerry Weißbach <gerry.w@gammaproduction.de>2015-04-14 10:12:02 +0200
commita7ec353091498e86d606c27f5ca7a808c2d096c0 (patch)
tree30ccfd0c312a06dc2d6bf45bfe70f9c26615e172 /lib/plugins/extension/script.js
parent803a90da0d25c98cd07fc138c940fdd5df1dec7e (diff)
downloaddokuwiki-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.js8
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();
+});