mirror of
https://github.com/friendica/friendica
synced 2025-04-24 05:50:11 +00:00
use shift-home instead to take you home
This commit is contained in:
parent
64628c800d
commit
45d8676dc2
2 changed files with 12 additions and 4 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue