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
7f5b255c
Commit
7f5b255c
authored
Jun 19, 2015
by
Robert Speicher
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Minor style fixes for LineHighlighter
parent
e59aad6e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
app/assets/javascripts/line_highlighter.js.coffee
app/assets/javascripts/line_highlighter.js.coffee
+3
-3
No files found.
app/assets/javascripts/line_highlighter.js.coffee
View file @
7f5b255c
...
@@ -73,7 +73,7 @@ class @LineHighlighter
...
@@ -73,7 +73,7 @@ class @LineHighlighter
lineNumber
=
$
(
event
.
target
).
data
(
'line-number'
)
lineNumber
=
$
(
event
.
target
).
data
(
'line-number'
)
current
=
@
hashToRange
(
@
_hash
)
current
=
@
hashToRange
(
@
_hash
)
unless
current
[
0
]
and
event
.
shiftKey
unless
current
[
0
]
&&
event
.
shiftKey
# If there's no current selection, or there is but Shift wasn't held,
# If there's no current selection, or there is but Shift wasn't held,
# treat this like a single-line selection.
# treat this like a single-line selection.
@
setHash
(
lineNumber
)
@
setHash
(
lineNumber
)
...
@@ -105,9 +105,9 @@ class @LineHighlighter
...
@@ -105,9 +105,9 @@ class @LineHighlighter
hashToRange
:
(
hash
)
->
hashToRange
:
(
hash
)
->
matches
=
hash
.
match
(
/^#?L(\d+)(?:-(\d+))?$/
)
matches
=
hash
.
match
(
/^#?L(\d+)(?:-(\d+))?$/
)
if
matches
and
matches
.
length
if
matches
&&
matches
.
length
first
=
parseInt
(
matches
[
1
])
first
=
parseInt
(
matches
[
1
])
last
=
matches
[
2
]
and
parseInt
(
matches
[
2
])
or
null
last
=
if
matches
[
2
]
then
parseInt
(
matches
[
2
])
else
null
[
first
,
last
]
[
first
,
last
]
else
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