mirror of
https://github.com/vichan-devel/vichan.git
synced 2024-11-25 07:50:23 +01:00
Update threadscroll.js
Fixed a line left from debug, and added comments.
This commit is contained in:
parent
c3c391be9e
commit
ab9f5d106e
@ -7,7 +7,7 @@ $(document).mouseover(function(e){
|
||||
});
|
||||
|
||||
$(document).keydown(function(e){
|
||||
console.log(e);
|
||||
//Up arrow
|
||||
if(e.which == 38){
|
||||
var ele = hoverElem;
|
||||
|
||||
@ -25,6 +25,7 @@ $(document).keydown(function(e){
|
||||
}
|
||||
}
|
||||
}
|
||||
//Down arrow
|
||||
}else if(e.which == 40){
|
||||
var ele = hoverElem;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user