diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2014-02-20 10:42:54 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2014-02-20 10:42:54 +0100 |
commit | 3ce77a35e5eeb22b580e243e50a2daeba761d7fc (patch) | |
tree | 41c1011ef6542f3c78fad62e9af023e75b287b49 /core/js | |
parent | e517e642befa119b77521a2e15571ee6932046ad (diff) | |
download | nextcloud-server-3ce77a35e5eeb22b580e243e50a2daeba761d7fc.tar.gz nextcloud-server-3ce77a35e5eeb22b580e243e50a2daeba761d7fc.zip |
fixing js syntax error
Diffstat (limited to 'core/js')
-rw-r--r-- | core/js/tags.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/js/tags.js b/core/js/tags.js index 16dd3d4bf97..bc6d7b4e071 100644 --- a/core/js/tags.js +++ b/core/js/tags.js @@ -25,11 +25,11 @@ OC.Tags= { }); self.deleteButton = { text: t('core', 'Delete'), - click: function() {self._deleteTags(self, type, self._selectedIds())}, + click: function() {self._deleteTags(self, type, self._selectedIds())} }; self.addButton = { text: t('core', 'Add'), - click: function() {self._addTag(self, type, self.$taginput.val())}, + click: function() {self._addTag(self, type, self.$taginput.val())} }; self._fillTagList(type, self.$taglist); @@ -349,5 +349,5 @@ OC.Tags= { console.warn(response); }); } -} +}; |