This commit is contained in:
barisusakli
2016-03-28 11:28:41 +03:00
parent 6df78f8ad0
commit 3b9120cd38

View File

@@ -82,6 +82,9 @@ define('forum/topic', [
function onKeyDown(ev) {
if (ev.target.nodeName === 'BODY') {
if (ev.shiftKey || ev.ctrlKey || ev.altKey) {
return;
}
if (ev.which === 36) { // home key
Topic.toTop();
return false;