summaryrefslogtreecommitdiffstats
path: root/apps/files
diff options
context:
space:
mode:
authorVincent Petry <pvince81@owncloud.com>2015-10-02 18:02:55 +0200
committerVincent Petry <pvince81@owncloud.com>2015-10-02 18:03:48 +0200
commitf135128664cae62a831ed46853ac820af6a4812b (patch)
tree755e4e24065b5261829af7994848a156a661ed6f /apps/files
parentaaabe356b59b32a384514c5f8940119d9760cc6f (diff)
downloadnextcloud-server-f135128664cae62a831ed46853ac820af6a4812b.tar.gz
nextcloud-server-f135128664cae62a831ed46853ac820af6a4812b.zip
Fix filelist size issues, breadcrumb, multiselect
- calculate multiselect header width to exclude scrollbar - call FileList._onResize() when sidebar is toggled ("appresized"), this also updates the breadcrumb width - moved global getScrollBarWidth() to OC.Util namespace
Diffstat (limited to 'apps/files')
-rw-r--r--apps/files/js/filelist.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js
index 9c4e43b3b8b..2516dd3e957 100644
--- a/apps/files/js/filelist.js
+++ b/apps/files/js/filelist.js
@@ -233,6 +233,7 @@
this.$el.find('thead th .columntitle').click(_.bind(this._onClickHeader, this));
this._onResize = _.debounce(_.bind(this._onResize, this), 100);
+ $('#app-content').on('appresized', this._onResize);
$(window).resize(this._onResize);
this.$el.on('show', this._onResize);
@@ -278,6 +279,7 @@
this.fileActions.off('registerAction', this._onFileActionsUpdated);
this.fileActions.off('setDefault', this._onFileActionsUpdated);
OC.Plugins.detach('OCA.Files.FileList', this);
+ $('#app-content').off('appresized', this._onResize);
},
/**
@@ -437,6 +439,8 @@
this.breadcrumb.setMaxWidth(containerWidth - actionsWidth - 10);
+ this.$table.find('>thead').width($('#app-content').width() - OC.Util.getScrollBarWidth());
+
this.updateSearch();
},