diff options
author | Bart Visscher <bartv@thisnet.nl> | 2012-04-10 21:53:51 +0200 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2012-04-10 21:53:51 +0200 |
commit | 9f547a1b3987838fda8db238a8999c9f474bb542 (patch) | |
tree | 48510f1365ec2cb7a0a6ec9b01008eb81b5d7c22 /core/js | |
parent | 2dfa02a34647010d26efe61598ff800c94b9c0d3 (diff) | |
download | nextcloud-server-9f547a1b3987838fda8db238a8999c9f474bb542.tar.gz nextcloud-server-9f547a1b3987838fda8db238a8999c9f474bb542.zip |
VCategories: fix function names to coding standard
Diffstat (limited to 'core/js')
-rw-r--r-- | core/js/oc-vcategories.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/js/oc-vcategories.js b/core/js/oc-vcategories.js index 931ea37edbe..e3b1abba08d 100644 --- a/core/js/oc-vcategories.js +++ b/core/js/oc-vcategories.js @@ -19,7 +19,7 @@ OCCategories={ height: 350, minHeight:200, width: 250, minWidth: 200, buttons: { 'Delete':function() { - OCCategories.do_delete(); + OCCategories.doDelete(); }, 'Rescan':function() { OCCategories.rescan(); @@ -53,7 +53,7 @@ OCCategories={ } }); }, - do_delete:function(){ + doDelete:function(){ var categories = $('#categorylist').find('input[type="checkbox"]').serialize(); categories += '&app=' + OCCategories.app; console.log('OCCategories.delete: ' + categories); |