mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-11 21:56:19 +10:00
10 lines
251 B
JavaScript
10 lines
251 B
JavaScript
function initGraphNav() {
|
|
$("body").keydown(function(e) {
|
|
if(e.keyCode == 37) { // left
|
|
$(".graph svg").animate({ left: "+=400" });
|
|
} else if(e.keyCode == 39) { // right
|
|
$(".graph svg").animate({ left: "-=400" });
|
|
}
|
|
});
|
|
}
|