1
0
term/pkg/jquery.hotkeys/hotkeys-blog.js

20 lines
375 B
JavaScript
Raw Normal View History

2024-03-23 11:25:41 +00:00
$(function(){
$(document).bind('keydown','ctrl+return',
function(){
window.location.href = '/blog';
}
)
$(document).bind('keydown', 'Shift+j',
function(){
if (document.activeElement !== document.body){
$(".article-nav-link-wrap:focus").closest("li").next().find("a.lmove").focus();
} else {
$('#article-nav-older').focus();
}
}
)
});