14 lines
No EOL
330 B
JavaScript
14 lines
No EOL
330 B
JavaScript
$(function(){
|
|
$(document).keypress(function(event){
|
|
$('#text').focus();
|
|
$('#comment').modal();
|
|
});
|
|
|
|
$(document).keydown(function(e){
|
|
if (e.keyCode == 37) {
|
|
window.location = $('#back').attr('href');
|
|
}else if(e.keyCode == 39) {
|
|
window.location = $('#forward').attr('href');
|
|
}
|
|
});
|
|
}); |