Fix opening folders from different file lists
Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
parent
f4cc549e86
commit
8ac03c67a7
|
@ -661,7 +661,12 @@
|
|||
|
||||
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));
|
||||
if (OCA.Files.App.getActiveView() !== 'files') {
|
||||
OCA.Files.App.setActiveView('files');
|
||||
OCA.Files.App.fileList.changeDirectory(OC.joinPaths(dir, filename), true, true);
|
||||
} else {
|
||||
context.fileList.changeDirectory(OC.joinPaths(dir, filename), true, false, parseInt(context.$file.attr('data-id'), 10));
|
||||
}
|
||||
});
|
||||
|
||||
this.registerAction({
|
||||
|
|
Loading…
Reference in New Issue