mirror of
https://github.com/nextcloud/server.git
synced 2026-03-21 10:00:33 -04:00
fixing js syntax error
This commit is contained in:
parent
e517e642be
commit
3ce77a35e5
1 changed files with 3 additions and 3 deletions
|
|
@ -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);
|
||||
});
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue