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
Léo-Paul Géneau
gitlab-ce
Commits
55947add
Commit
55947add
authored
9 years ago
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
Show 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 ->
$
(
"html, body"
).
animate
scrollTop
:
$
(
".navbar"
).
offset
().
top
-
$
(
".navbar"
).
height
()
,
200
false
$
(
"a"
).
click
(
event
)
->
link
=
event
.
target
isAnchor
=
link
instanceof
HTMLAnchorElement
if
(
location
.
hash
!=
""
||
isAnchor
)
$
(
"a"
).
click
(
e
)
->
unless
location
.
hash
is
""
$
(
"html,body"
).
animate
scrollTop
:
$
(
this
).
offset
().
top
-
$
(
".navbar"
).
height
()
-
3
,
200
This diff is collapsed.
Click to expand it.
app/assets/javascripts/tree_show.js.coffee
View file @
55947add
...
...
@@ -5,12 +5,10 @@ $(document).ready ->
$
(
"html, body"
).
animate
scrollTop
:
$
(
".navbar"
).
offset
().
top
-
$
(
".navbar"
).
height
()
,
200
false
$
(
"a"
).
click
(
event
)
->
link
=
event
.
target
isAnchor
=
link
instanceof
HTMLAnchorElement
if
(
location
.
hash
!=
""
||
isAnchor
)
$
(
"a"
).
click
(
e
)
->
unless
location
.
hash
is
""
$
(
"html,body"
).
animate
scrollTop
:
$
(
this
).
offset
().
top
-
$
(
".navbar"
).
height
()
-
3
,
200
This diff is collapsed.
Click to expand it.
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