diff options
author | Fabian <fabian@fabi.me> | 2016-05-17 22:57:07 +0200 |
---|---|---|
committer | Fabian <fabian@fabi.me> | 2016-05-17 22:57:07 +0200 |
commit | 2a7d3dd83191647bd6e84d522bce09aa5392b207 (patch) | |
tree | 62be60357a7a8d49573860ce6370e596ecc5fe39 /apps/files | |
parent | de5b7609f96e166b96b7380e62d32ac51d85d50f (diff) | |
download | nextcloud-server-2a7d3dd83191647bd6e84d522bce09aa5392b207.tar.gz nextcloud-server-2a7d3dd83191647bd6e84d522bce09aa5392b207.zip |
dont update search onResize
this.updateSearch() sets the current file list instance and clears the box. This is unnecessary and makes the search box unsuable on some mobile devices where a keyboard fade-in causes a onResize trigger, which would then clear and blur the box.
Diffstat (limited to 'apps/files')
-rw-r--r-- | apps/files/js/filelist.js | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index ef29a4844bf..58c07c60f97 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -507,8 +507,6 @@ this.breadcrumb.setMaxWidth(containerWidth - actionsWidth - 10); this.$table.find('>thead').width($('#app-content').width() - OC.Util.getScrollBarWidth()); - - this.updateSearch(); }, /** |