summaryrefslogtreecommitdiffstats
path: root/public_html/data/js
diff options
context:
space:
mode:
Diffstat (limited to 'public_html/data/js')
-rw-r--r--public_html/data/js/thumbnail-view.js1
-rw-r--r--public_html/data/js/vendor/jquery.colorbox.js4
2 files changed, 3 insertions, 2 deletions
diff --git a/public_html/data/js/thumbnail-view.js b/public_html/data/js/thumbnail-view.js
index 7bc72a556..f453f4c1c 100644
--- a/public_html/data/js/thumbnail-view.js
+++ b/public_html/data/js/thumbnail-view.js
@@ -30,6 +30,7 @@ define(['jquery', 'underscore', 'jquery.colorbox'], function ($, _) {
retinaImage: true,
maxHeight: "100%",
maxWidth: "100%",
+ title: 'Use h/l or right/left arrow keys or these buttons:',
next: '<span class="glyphicon glyphicon-chevron-right"></span>',
previous: '<span class="glyphicon glyphicon-chevron-left"></span>',
close: '<span class="glyphicon glyphicon-remove"></span>',
diff --git a/public_html/data/js/vendor/jquery.colorbox.js b/public_html/data/js/vendor/jquery.colorbox.js
index f9b676670..4c5025370 100644
--- a/public_html/data/js/vendor/jquery.colorbox.js
+++ b/public_html/data/js/vendor/jquery.colorbox.js
@@ -526,10 +526,10 @@
publicMethod.close();
}
if (open && settings.get('arrowKey') && $related[1] && !e.altKey) {
- if (key === 37) {
+ if (key === 37 || key == 72) {
e.preventDefault();
$prev.click();
- } else if (key === 39) {
+ } else if (key === 39 || key === 76) {
e.preventDefault();
$next.click();
}