use shift-home instead to take you home
This commit is contained in:
@@ -44,10 +44,11 @@
|
||||
$('#pause').html('');
|
||||
}
|
||||
}
|
||||
if(event.keyCode == '36') {
|
||||
event.preventDefault();
|
||||
if(homebase)
|
||||
if(event.keyCode == '36' && event.shiftKey == true) {
|
||||
if(homebase !== undefined) {
|
||||
event.preventDefault();
|
||||
document.location = homebase;
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user