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
fcc39d55
Commit
fcc39d55
authored
Oct 06, 2015
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'fix_search_in_file_tree' into 'master'
Fix search in Files
https://gitlab.com/gitlab-org/gitlab-ce/issues/1873
See merge request !1511
parents
17de909a
1a86a00c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
CHANGELOG
CHANGELOG
+1
-0
tree.js.coffee
app/assets/javascripts/tree.js.coffee
+4
-1
No files found.
CHANGELOG
View file @
fcc39d55
...
...
@@ -39,6 +39,7 @@ v 8.0.4
- Fix anchors to comments in diffs
- Remove CI token from build traces
- Fix "Assign All" button on Runner admin page
- Fix search in Files
v 8.0.3
- Fix URL shown in Slack notifications
...
...
app/assets/javascripts/tree.js.coffee
View file @
fcc39d55
...
...
@@ -16,6 +16,9 @@ class @TreeView
li
=
$
(
"tr.tree-item"
)
liSelected
=
null
$
(
'body'
).
keydown
(
e
)
->
if
$
(
"input:focus"
).
length
>
0
&&
(
e
.
which
==
38
||
e
.
which
==
40
)
return
false
if
e
.
which
is
40
if
liSelected
next
=
liSelected
.
next
()
...
...
@@ -38,4 +41,4 @@ class @TreeView
$
(
liSelected
).
focus
()
else
if
e
.
which
is
13
path
=
$
(
'.tree-item.selected .tree-item-file-name a'
).
attr
(
'href'
)
Turbolinks
.
visit
(
path
)
if
path
then
Turbolinks
.
visit
(
path
)
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