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

github.com/nextcloud/serverinfo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorrakekniven <mark.ziegler@rakekniven.de>2018-08-21 08:45:24 +0300
committerGitHub <noreply@github.com>2018-08-21 08:45:24 +0300
commit9ddd4449ac3d91058ec81c74726d07c34db0391f (patch)
tree62fee5b9fe098bea84782779d97b1d476c52c781 /js
parent7629da70aaaf76dd12114e777e586009b3736591 (diff)
Fixed encoding of mac char
Signed-off-by: Mark Ziegler <mark.ziegler@rakekniven.de>
Diffstat (limited to 'js')
-rw-r--r--js/script.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/script.js b/js/script.js
index 375dbd6..5367cfe 100644
--- a/js/script.js
+++ b/js/script.js
@@ -294,7 +294,7 @@
if (/iPhone|iPad/i.test(navigator.userAgent)) {
actionMsg = t('core', 'Not supported!');
} else if (/Mac/i.test(navigator.userAgent)) {
- actionMsg = t('core', 'Press ⌘-C to copy.');
+ actionMsg = t('core', 'Press ⌘-C to copy.');
} else {
actionMsg = t('core', 'Press Ctrl-C to copy.');
}