BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
1cfd4159
Commit
1cfd4159
authored
Apr 24, 2016
by
Jacob Schatz
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'rs-todo-middle-click' into 'master'
Allow middle-click on a Todo row to open in a new tab See merge request !3899
parents
7acea6bd
aace81ca
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
todos.js.coffee
app/assets/javascripts/todos.js.coffee
+2
-1
No files found.
app/assets/javascripts/todos.js.coffee
View file @
1cfd4159
...
...
@@ -102,7 +102,8 @@ class @Todos
todoLink
=
$
(
this
).
data
(
'url'
)
return
unless
todoLink
if
e
.
metaKey
# Allow Meta-Click or Mouse3-click to open in a new tab
if
e
.
metaKey
or
e
.
which
is
2
e
.
preventDefault
()
window
.
open
(
todoLink
,
'_blank'
)
else
...
...
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