mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-11 13:46:11 +10:00
11 lines
287 B
CoffeeScript
11 lines
287 B
CoffeeScript
initGraphNav = ->
|
|
$('.graph svg').css 'position', 'relative'
|
|
|
|
$('body').bind 'keyup', (e) ->
|
|
if e.keyCode is 37 # left
|
|
$('.graph svg').animate left: '+=400'
|
|
else if e.keyCode is 39 # right
|
|
$('.graph svg').animate left: '-=400'
|
|
|
|
window.initGraphNav = initGraphNav
|