diff options
author | Joas Schilling <coding@schilljs.com> | 2019-02-06 13:34:12 +0100 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2019-02-06 13:34:12 +0100 |
commit | 3580a1a24096ccde98f109c167a16d8f4cddce44 (patch) | |
tree | dcc7afa998523db4fce6864c6456e0c5c9d90e04 /apps | |
parent | 5faf6f5186422c9da24e98d609e67d5a89604467 (diff) | |
download | nextcloud-server-3580a1a24096ccde98f109c167a16d8f4cddce44.tar.gz nextcloud-server-3580a1a24096ccde98f109c167a16d8f4cddce44.zip |
Use the new method instead of the deprecated wrapper
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files/js/fileactions.js | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/apps/files/js/fileactions.js b/apps/files/js/fileactions.js index ef29551c591..a844fba40a3 100644 --- a/apps/files/js/fileactions.js +++ b/apps/files/js/fileactions.js @@ -64,7 +64,7 @@ * Removes an event handler * * @param {String} eventName event name - * @param Function callback + * @param {Function} callback */ off: function(eventName, callback) { this.$el.off(eventName, callback); @@ -664,9 +664,16 @@ } }); - this.register('dir', 'Open', OC.PERMISSION_READ, '', function (filename, context) { - var dir = context.$file.attr('data-path') || context.fileList.getCurrentDirectory(); - context.fileList.changeDirectory(OC.joinPaths(dir, filename), true, false, parseInt(context.$file.attr('data-id'), 10)); + this.registerAction({ + name: 'Open', + mime: 'dir', + permissions: OC.PERMISSION_READ, + icon: '', + actionHandler: function (filename, context) { + var dir = context.$file.attr('data-path') || context.fileList.getCurrentDirectory(); + context.fileList.changeDirectory(OC.joinPaths(dir, filename), true, false, parseInt(context.$file.attr('data-id'), 10)); + }, + displayName: t('files', 'Open') }); this.registerAction({ |