Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kazuhiko Shiozaki
gitlab-ce
Commits
08d9421d
Commit
08d9421d
authored
Sep 06, 2012
by
Nihad Abbasov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rewrite graph.js in coffeescript
parent
60e18e26
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
10 deletions
+10
-10
app/assets/javascripts/graph.js
app/assets/javascripts/graph.js
+0
-10
app/assets/javascripts/graph.js.coffee
app/assets/javascripts/graph.js.coffee
+10
-0
No files found.
app/assets/javascripts/graph.js
deleted
100644 → 0
View file @
60e18e26
function
initGraphNav
()
{
$
(
"
.graph svg
"
).
css
(
"
position
"
,
"
relative
"
);
$
(
"
body
"
).
bind
(
"
keyup
"
,
function
(
e
)
{
if
(
e
.
keyCode
==
37
)
{
// left
$
(
"
.graph svg
"
).
animate
({
left
:
"
+=400
"
});
}
else
if
(
e
.
keyCode
==
39
)
{
// right
$
(
"
.graph svg
"
).
animate
({
left
:
"
-=400
"
});
}
});
}
app/assets/javascripts/graph.js.coffee
0 → 100644
View file @
08d9421d
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
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment