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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gitlab-ce
Commits
55947add
Commit
55947add
authored
Jan 14, 2015
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert "When anchor is clicked set the correct condition."
This reverts commit
5140bd88
.
parent
3bf9b660
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
10 deletions
+6
-10
app/assets/javascripts/project_show.js.coffee
app/assets/javascripts/project_show.js.coffee
+3
-5
app/assets/javascripts/tree_show.js.coffee
app/assets/javascripts/tree_show.js.coffee
+3
-5
No files found.
app/assets/javascripts/project_show.js.coffee
View file @
55947add
...
@@ -21,12 +21,10 @@ $(document).ready ->
...
@@ -21,12 +21,10 @@ $(document).ready ->
$
(
"html, body"
).
animate
$
(
"html, body"
).
animate
scrollTop
:
$
(
".navbar"
).
offset
().
top
-
$
(
".navbar"
).
height
()
scrollTop
:
$
(
".navbar"
).
offset
().
top
-
$
(
".navbar"
).
height
()
,
200
,
200
false
$
(
"a"
).
click
(
event
)
->
$
(
"a"
).
click
(
e
)
->
link
=
event
.
target
unless
location
.
hash
is
""
isAnchor
=
link
instanceof
HTMLAnchorElement
if
(
location
.
hash
!=
""
||
isAnchor
)
$
(
"html,body"
).
animate
$
(
"html,body"
).
animate
scrollTop
:
$
(
this
).
offset
().
top
-
$
(
".navbar"
).
height
()
-
3
scrollTop
:
$
(
this
).
offset
().
top
-
$
(
".navbar"
).
height
()
-
3
,
200
,
200
app/assets/javascripts/tree_show.js.coffee
View file @
55947add
...
@@ -5,12 +5,10 @@ $(document).ready ->
...
@@ -5,12 +5,10 @@ $(document).ready ->
$
(
"html, body"
).
animate
$
(
"html, body"
).
animate
scrollTop
:
$
(
".navbar"
).
offset
().
top
-
$
(
".navbar"
).
height
()
scrollTop
:
$
(
".navbar"
).
offset
().
top
-
$
(
".navbar"
).
height
()
,
200
,
200
false
$
(
"a"
).
click
(
event
)
->
$
(
"a"
).
click
(
e
)
->
link
=
event
.
target
unless
location
.
hash
is
""
isAnchor
=
link
instanceof
HTMLAnchorElement
if
(
location
.
hash
!=
""
||
isAnchor
)
$
(
"html,body"
).
animate
$
(
"html,body"
).
animate
scrollTop
:
$
(
this
).
offset
().
top
-
$
(
".navbar"
).
height
()
-
3
scrollTop
:
$
(
this
).
offset
().
top
-
$
(
".navbar"
).
height
()
-
3
,
200
,
200
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