switch js navigation to use wasd
This commit is contained in:
@@ -4,9 +4,15 @@
|
||||
}
|
||||
|
||||
Danbooru.scroll_to = function(element) {
|
||||
var top = null;
|
||||
if (typeof(element) === "number") {
|
||||
top = element;
|
||||
} else {
|
||||
top = element.offset().top - 10;
|
||||
}
|
||||
$('html, body').animate({
|
||||
scrollTop: element.offset().top - 10
|
||||
}, 250);
|
||||
scrollTop: top
|
||||
}, 0);
|
||||
}
|
||||
|
||||
Danbooru.notice = function(msg) {
|
||||
|
||||
Reference in New Issue
Block a user