Merge pull request #14060 from nextcloud/bugfix/noid/use-new-method

Use the new method instead of the deprecated wrapper
This commit is contained in:
Morris Jobke 2019-02-08 10:57:16 +01:00 committed by GitHub
commit fda3f4fc41
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 11 additions and 4 deletions

View File

@ -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({