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
1
Merge Requests
1
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
nexedi
gitlab-ce
Commits
6a626a46
Commit
6a626a46
authored
Jun 27, 2016
by
Alfredo Sumaran
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixes opening files on a new tab with meta key + click or using mouse middle button
parent
6c9f5a50
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
app/assets/javascripts/tree.js.coffee
app/assets/javascripts/tree.js.coffee
+6
-2
No files found.
app/assets/javascripts/tree.js.coffee
View file @
6a626a46
...
...
@@ -6,10 +6,14 @@ class @TreeView
# Make the entire tree-item row clickable, but not if clicking another link (like a commit message)
$
(
".tree-content-holder .tree-item"
).
on
'click'
,
(
e
)
->
$clickedEl
=
$
(
e
.
target
)
path
=
$
(
'.tree-item-file-name a'
,
this
).
attr
(
'href'
)
if
not
$clickedEl
.
is
(
'a'
)
and
not
$clickedEl
.
is
(
'.str-truncated'
)
path
=
$
(
'.tree-item-file-name a'
,
this
).
attr
(
'href'
)
Turbolinks
.
visit
(
path
)
if
e
.
metaKey
or
e
.
which
is
2
e
.
preventDefault
()
window
.
open
path
,
'_blank'
else
Turbolinks
.
visit
path
# Show the "Loading commit data" for only the first element
$
(
'span.log_loading:first'
).
removeClass
(
'hide'
)
...
...
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