summaryrefslogtreecommitdiffstats
path: root/apps/files_external/js
diff options
context:
space:
mode:
authorJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2018-02-27 13:25:42 +0100
committerJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2018-02-27 13:25:42 +0100
commit5f217e2d83c3e6556f2d9ca1ba314b23e84c69c5 (patch)
treeded6988712cf085f833d9f6b3df1fbf44e5913c3 /apps/files_external/js
parent6ee9a2b35bf1dee8e64b9d7b1d86766b6505b3ce (diff)
downloadnextcloud-server-5f217e2d83c3e6556f2d9ca1ba314b23e84c69c5.tar.gz
nextcloud-server-5f217e2d83c3e6556f2d9ca1ba314b23e84c69c5.zip
fixup! Fixed tests
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'apps/files_external/js')
-rw-r--r--apps/files_external/js/settings.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/files_external/js/settings.js b/apps/files_external/js/settings.js
index 99ee83d8a22..035340b2252 100644
--- a/apps/files_external/js/settings.js
+++ b/apps/files_external/js/settings.js
@@ -1304,9 +1304,9 @@ MountConfigListView.prototype = _.extend({
'enable_sharing',
'encoding_compatibility'
];
- // if (this._encryptionEnabled) {
- // visibleOptions.push('encrypt');
- // }
+ if (this._encryptionEnabled) {
+ visibleOptions.push('encrypt');
+ }
dropDown.show($toggle, storage.mountOptions || [], visibleOptions);
$('body').on('mouseup.mountOptionsDropdown', function(event) {
var $target = $(event.target);