From: Bart Visscher Date: Tue, 10 Apr 2012 19:53:51 +0000 (+0200) Subject: VCategories: fix function names to coding standard X-Git-Tag: v4.0.0beta~364 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=9f547a1b3987838fda8db238a8999c9f474bb542;p=nextcloud-server.git VCategories: fix function names to coding standard --- 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);