Do not open the sidebar automatically on small widths

Signed-off-by: Simon L <szaimen@e.mail.de>
This commit is contained in:
Simon L 2023-01-27 14:11:44 +01:00 committed by backportbot-nextcloud[bot]
parent b06b3f36ad
commit c4f4bbeaa6

View file

@ -431,7 +431,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)
}
@ -3341,7 +3343,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) {