diff options
author | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2018-07-24 10:29:46 +0200 |
---|---|---|
committer | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2018-07-24 11:01:11 +0200 |
commit | 440b5c944f1d5bb759da1f90ad7fb17ba0e2b302 (patch) | |
tree | 26ddf0e828c1b7b4ac0ba359a7dbdbfb16f3a846 /apps/files_sharing | |
parent | 0274507cb10b53cfd38bd0ae3810c26cdb172ad1 (diff) | |
download | nextcloud-server-440b5c944f1d5bb759da1f90ad7fb17ba0e2b302.tar.gz nextcloud-server-440b5c944f1d5bb759da1f90ad7fb17ba0e2b302.zip |
Fixed scrolling container
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'apps/files_sharing')
-rw-r--r-- | apps/files_sharing/js/app.js | 5 | ||||
-rw-r--r-- | apps/files_sharing/js/public.js | 1 |
2 files changed, 0 insertions, 6 deletions
diff --git a/apps/files_sharing/js/app.js b/apps/files_sharing/js/app.js index 76d52cfe9e0..750f66236ae 100644 --- a/apps/files_sharing/js/app.js +++ b/apps/files_sharing/js/app.js @@ -32,7 +32,6 @@ OCA.Sharing.App = { $el, { id: 'shares.self', - scrollContainer: $('#app-content'), sharedWithUser: true, fileActions: this._createFileActions(), config: OCA.Files.App.getFilesConfig() @@ -55,7 +54,6 @@ OCA.Sharing.App = { $el, { id: 'shares.others', - scrollContainer: $('#app-content'), sharedWithUser: false, fileActions: this._createFileActions(), config: OCA.Files.App.getFilesConfig() @@ -78,7 +76,6 @@ OCA.Sharing.App = { $el, { id: 'shares.link', - scrollContainer: $('#app-content'), linksOnly: true, fileActions: this._createFileActions(), config: OCA.Files.App.getFilesConfig() @@ -101,7 +98,6 @@ OCA.Sharing.App = { $el, { id: 'shares.deleted', - scrollContainer: $('#app-content'), showDeleted: true, sharedWithUser: true, fileActions: this._restoreShareAction(), @@ -125,7 +121,6 @@ OCA.Sharing.App = { $el, { id: 'shares.overview', - scrollContainer: $('#app-content'), config: OCA.Files.App.getFilesConfig(), isOverview: true } diff --git a/apps/files_sharing/js/public.js b/apps/files_sharing/js/public.js index 06dc6a07d48..35ffd9ff65e 100644 --- a/apps/files_sharing/js/public.js +++ b/apps/files_sharing/js/public.js @@ -67,7 +67,6 @@ OCA.Sharing.PublicApp = { $el, { id: 'files.public', - scrollContainer: $('#app-content'), dragOptions: dragOptions, folderDropOptions: folderDropOptions, fileActions: fileActions, |