Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/files_rightclick.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVincent Petry <vincent@nextcloud.com>2022-07-27 15:23:54 +0300
committerVincent Petry <vincent@nextcloud.com>2022-07-27 15:23:54 +0300
commita5e5c53db7efad0eb5a4be122c8bb026e5de0e21 (patch)
treeb42ba2fc1154bad14bb3bca47e09e57c2a4f48b7
parent118b7511040c4aa5d78d4ffbbbbca955cb6b269b (diff)
Use new selector for .selectedActions
Signed-off-by: Vincent Petry <vincent@nextcloud.com>
-rw-r--r--js/files.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/files.js b/js/files.js
index b212288..b50cc07 100644
--- a/js/files.js
+++ b/js/files.js
@@ -87,7 +87,7 @@
});
}
- if (!$('#selectedActionsList').hasClass('hidden')) {
+ if (!$('.selectedActions').hasClass('hidden')) {
addNewOption('Check', 'category-enabled', t(appName, 'Select'), function () {
$(currentFile.find('input.selectCheckBox')).click();
});