diff options
author | Thomas Müller <DeepDiver1975@users.noreply.github.com> | 2016-04-20 11:58:38 +0200 |
---|---|---|
committer | Thomas Müller <DeepDiver1975@users.noreply.github.com> | 2016-04-20 11:58:38 +0200 |
commit | 34b753baa086c5e4957673f2dc78379fabc5c854 (patch) | |
tree | 96b481dc07bc5c6759dea03d4c031bc017ada59b /apps/files_sharing | |
parent | aa33ab0c03c1e26dfb866b23c68279ffd47fd6f0 (diff) | |
parent | 6c5696d3a84ff71fc5ddb53b490bbc77f5c119f5 (diff) | |
download | nextcloud-server-34b753baa086c5e4957673f2dc78379fabc5c854.tar.gz nextcloud-server-34b753baa086c5e4957673f2dc78379fabc5c854.zip |
Merge pull request #23952 from owncloud/hide-hidden-files
Add option to hide hidden files
Diffstat (limited to 'apps/files_sharing')
-rw-r--r-- | apps/files_sharing/js/app.js | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/apps/files_sharing/js/app.js b/apps/files_sharing/js/app.js index af198208de2..6f12b3d4456 100644 --- a/apps/files_sharing/js/app.js +++ b/apps/files_sharing/js/app.js @@ -33,7 +33,8 @@ OCA.Sharing.App = { id: 'shares.self', scrollContainer: $('#app-content'), sharedWithUser: true, - fileActions: this._createFileActions() + fileActions: this._createFileActions(), + config: OCA.Files.App.getFilesConfig() } ); @@ -55,7 +56,8 @@ OCA.Sharing.App = { id: 'shares.others', scrollContainer: $('#app-content'), sharedWithUser: false, - fileActions: this._createFileActions() + fileActions: this._createFileActions(), + config: OCA.Files.App.getFilesConfig() } ); @@ -77,7 +79,8 @@ OCA.Sharing.App = { id: 'shares.link', scrollContainer: $('#app-content'), linksOnly: true, - fileActions: this._createFileActions() + fileActions: this._createFileActions(), + config: OCA.Files.App.getFilesConfig() } ); |