Merge pull request #85 from funkill/keys_navigation
Add navigation by keyboard using alt + left/right arrows
This commit is contained in:
commit
5ffee8144b
|
@ -23,6 +23,23 @@ $( document ).ready(function() {
|
|||
hljs.highlightBlock(block);
|
||||
});
|
||||
|
||||
var KEY_CODES = {
|
||||
PREVIOUS_KEY: 37,
|
||||
NEXT_KEY: 39
|
||||
};
|
||||
|
||||
$(document).on('keydown', function (e) {
|
||||
if (e.altKey === true) {
|
||||
switch (e.keyCode) {
|
||||
case KEY_CODES.NEXT_KEY:
|
||||
window.location.href = $('.nav-chapters.next').attr('href');
|
||||
break;
|
||||
case KEY_CODES.PREV_KEY:
|
||||
window.location.href = $('.nav-chapters.previous').attr('href');
|
||||
break;
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
// Interesting DOM Elements
|
||||
var html = $("html");
|
||||
|
|
|
@ -84,13 +84,13 @@
|
|||
</div>
|
||||
|
||||
{{#previous}}
|
||||
<a href="{{link}}" class="nav-chapters previous">
|
||||
<a href="{{link}}" class="nav-chapters previous" title="Alt + ←">
|
||||
<i class="fa fa-angle-left"></i>
|
||||
</a>
|
||||
{{/previous}}
|
||||
|
||||
{{#next}}
|
||||
<a href="{{link}}" class="nav-chapters next">
|
||||
<a href="{{link}}" class="nav-chapters next" title="Alt + →">
|
||||
<i class="fa fa-angle-right"></i>
|
||||
</a>
|
||||
{{/next}}
|
||||
|
|
Loading…
Reference in New Issue