Преглед изворни кода

Merge pull request #36409 from nextcloud/enh/noid/dont-automatically-open-sidebar-on-mobile

Do not open the sidebar automatically on small widths
tags/v26.0.0beta3
Simon L пре 1 година
родитељ
комит
a579b36113
No account linked to committer's email address
1 измењених фајлова са 6 додато и 2 уклоњено
  1. 6
    2
      apps/files/js/filelist.js

+ 6
- 2
apps/files/js/filelist.js Прегледај датотеку

@@ -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…
Откажи
Сачувај