diff options
author | Vincent Petry <vincent@nextcloud.com> | 2022-07-27 10:23:44 +0200 |
---|---|---|
committer | Vincent Petry <vincent@nextcloud.com> | 2022-07-27 10:23:44 +0200 |
commit | 8be9b04981c4f0bdf0a2b8d424f55c797ad90a32 (patch) | |
tree | fb6783d017fc73e0f54435f464eda71ce0ebb169 /apps/files_external/tests | |
parent | 97462295587f4016066264edb6eed5d5e17903f3 (diff) | |
download | nextcloud-server-8be9b04981c4f0bdf0a2b8d424f55c797ad90a32.tar.gz nextcloud-server-8be9b04981c4f0bdf0a2b8d424f55c797ad90a32.zip |
Remove legacy #dir element in files list
Removed legacy "#dir" input element in the DOM.
Apps should use OCA.Files.App.currentFileList or
OCA.Sharing.PublicApp.fileList and call getCurrentDirectory() to
retrieve the current directory and changeDirectory() to change it.
Signed-off-by: Vincent Petry <vincent@nextcloud.com>
Diffstat (limited to 'apps/files_external/tests')
-rw-r--r-- | apps/files_external/tests/js/mountsfilelistSpec.js | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/apps/files_external/tests/js/mountsfilelistSpec.js b/apps/files_external/tests/js/mountsfilelistSpec.js index ec6ebe1bf11..598eff25d89 100644 --- a/apps/files_external/tests/js/mountsfilelistSpec.js +++ b/apps/files_external/tests/js/mountsfilelistSpec.js @@ -33,7 +33,6 @@ describe('OCA.Files_External.FileList tests', function() { $('#testArea').append( '<div id="app-content-container">' + // init horrible parameters - '<input type="hidden" id="dir" value="/"></input>' + '<input type="hidden" id="permissions" value="31"></input>' + // dummy controls '<div class="files-controls">' + |