Browse Source

Update threadscroll.js

Fixed a line left from debug, and added comments.
pull/40/head
anonfagola 10 years ago
committed by czaks
parent
commit
f5d121af10
  1. 3
      js/threadscroll.js

3
js/threadscroll.js

@ -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…
Cancel
Save