mirror of
https://github.com/nextcloud/server.git
synced 2026-07-16 13:23:11 -04:00
Do not open the sidebar automatically on small widths
Signed-off-by: Simon L <szaimen@e.mail.de>
This commit is contained in:
parent
07b9dbab3b
commit
7fa42a2f03
1 changed files with 6 additions and 2 deletions
|
|
@ -433,7 +433,9 @@
|
|||
OCA.Files.Files.handleDownload(url);
|
||||
}
|
||||
|
||||
OCA.Files.Sidebar.open(fileInfo.path);
|
||||
if (document.documentElement.clientWidth > 1024) {
|
||||
OCA.Files.Sidebar.open(fileInfo.path);
|
||||
}
|
||||
} catch (error) {
|
||||
console.error(`Failed to trigger default action on the file for URL: ${location.href}`, error)
|
||||
}
|
||||
|
|
@ -3340,7 +3342,9 @@
|
|||
}
|
||||
if (file.length === 1) {
|
||||
_.defer(function() {
|
||||
this.showDetailsView(file[0]);
|
||||
if (document.documentElement.clientWidth > 1024) {
|
||||
this.showDetailsView(file[0]);
|
||||
}
|
||||
}.bind(this));
|
||||
}
|
||||
this.highlightFiles(file, function($tr) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue