diff options
author | Florian Pritz <bluewind@xinu.at> | 2015-08-04 23:43:57 +0200 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2015-08-04 23:43:57 +0200 |
commit | f48c000aa364302bb692852fca6dee4d8dc2286f (patch) | |
tree | b1bf5c23255aba9172d396137ead240c2ef4b26b /public_html/data/js/vendor | |
parent | 2bc6b97401791ae4ced15b7e8f903efd6e76e09f (diff) |
Improve colorbox navigation and document it0.9.5
- Make buttons fixed so you don't have to move the mouse
- Support h/l for vimperator users
- Document mappings so users actually know about them
Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to 'public_html/data/js/vendor')
-rw-r--r-- | public_html/data/js/vendor/jquery.colorbox.js | 4 |
1 files changed, 2 insertions, 2 deletions
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(); } |