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:
authorNastuzziSamy <samy@nastuzzi.fr>2018-04-24 12:36:49 +0300
committerNastuzziSamy <samy@nastuzzi.fr>2018-04-24 12:36:49 +0300
commitbaa36279aacd873499951a211d3c57f3b8785c5f (patch)
tree67c4738a15913a28a08464c3cd7a06c8a3ff9451
parent81499e7237169969bf66fdbb8d9a9883e5ab62cc (diff)
Bug fix and text correction
-rw-r--r--js/script.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/script.js b/js/script.js
index 5560a4c..460591e 100644
--- a/js/script.js
+++ b/js/script.js
@@ -122,7 +122,7 @@ var openContextOnRightClick = function (event) {
}
if (currentFile.attr('data-type') === 'dir') {
- text = t(appName, 'Open this folder');
+ text = t(appName, 'Open folder');
icon = 'filetype-folder-drag-accept';
generateNewOption('Open', 'category-app-bundles', t(appName, 'Open in new tab'), function () {
@@ -187,4 +187,4 @@ var openContextOnRightClick = function (event) {
};
$('<style class="rightClickStyle"></style>').appendTo('head');
-$('#app-content').contextmenu(openContextOnRightClick);
+$('#filestable').contextmenu(openContextOnRightClick);