Commit c2872268 authored by Nihad Abbasov's avatar Nihad Abbasov

merge graph.js into projects.js

parent 41ec5400
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
...@@ -22,3 +22,10 @@ $ -> ...@@ -22,3 +22,10 @@ $ ->
# Ref switcher # Ref switcher
$('.project-refs-select').on 'change', -> $('.project-refs-select').on 'change', ->
$(@).parents('form').submit() $(@).parents('form').submit()
class @GraphNav
@init: ->
$('.graph svg').css 'position', 'relative'
$('body').bind 'keyup', (e) ->
$('.graph svg').animate(left: '+=400') if e.keyCode is 37 # left
$('.graph svg').animate(left: '-=400') if e.keyCode is 39 # right
...@@ -10,5 +10,5 @@ ...@@ -10,5 +10,5 @@
initGraph(); initGraph();
$(function(){ $(function(){
branchGraph($("#holder")[0]); branchGraph($("#holder")[0]);
initGraphNav(); GraphNav.init();
}); });
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment