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
45b8266b
Commit
45b8266b
authored
Sep 29, 2017
by
Tim Zallmann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed Eslint Errors
parent
9196a356
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
app/assets/javascripts/repo/components/repo_sidebar.vue
app/assets/javascripts/repo/components/repo_sidebar.vue
+4
-4
No files found.
app/assets/javascripts/repo/components/repo_sidebar.vue
View file @
45b8266b
...
...
@@ -25,11 +25,11 @@ export default {
methods
:
{
addPopEventListener
()
{
window
.
addEventListener
(
'
popstate
'
,
(
event
)
=>
{
let
selectedFile
=
this
.
files
.
find
(
file
=>
{
return
location
.
pathname
.
indexOf
(
file
.
url
)
>
-
1
}
);
window
.
addEventListener
(
'
popstate
'
,
()
=>
{
let
selectedFile
=
this
.
files
.
find
(
file
=>
location
.
pathname
.
indexOf
(
file
.
url
)
>
-
1
);
if
(
!
selectedFile
)
{
// Maybe it is not in the current tree but in the opened tabs
selectedFile
=
Store
.
openedFiles
.
find
(
file
=>
{
return
location
.
pathname
.
indexOf
(
file
.
url
)
>
-
1
}
);
selectedFile
=
Store
.
openedFiles
.
find
(
file
=>
location
.
pathname
.
indexOf
(
file
.
url
)
>
-
1
);
}
if
(
selectedFile
)
{
if
(
selectedFile
.
url
!==
this
.
activeFile
.
url
)
{
...
...
@@ -41,7 +41,7 @@ export default {
if
(
!
isNaN
(
lineNumber
))
{
Store
.
setActiveLine
(
lineNumber
);
if
(
Store
.
isPreviewView
())
{
document
.
getElementById
(
'
L
'
+
lineNumber
).
scrollIntoView
();
document
.
getElementById
(
`L
${
lineNumber
}
`
).
scrollIntoView
();
}
else
{
Helper
.
monacoInstance
.
setPosition
({
lineNumber
:
this
.
activeLine
,
...
...
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