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
c9dcc398
Commit
c9dcc398
authored
Dec 20, 2018
by
Winnie Hellmann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Focus search box when issue board switcher opens
parent
b6245fb4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
1 deletion
+12
-1
ee/app/assets/javascripts/boards/components/boards_selector.vue
.../assets/javascripts/boards/components/boards_selector.vue
+12
-1
No files found.
ee/app/assets/javascripts/boards/components/boards_selector.vue
View file @
c9dcc398
...
...
@@ -147,6 +147,10 @@ export default {
},
toggleDropdown
()
{
this
.
open
=
!
this
.
open
;
if
(
this
.
open
&&
!
this
.
loading
)
{
this
.
$nextTick
(
this
.
focusSearchInput
);
}
},
loadBoards
(
toggleDropdown
=
true
)
{
if
(
toggleDropdown
)
{
...
...
@@ -162,7 +166,10 @@ export default {
this
.
boards
=
json
;
})
.
then
(()
=>
this
.
$nextTick
())
// Wait for boards list in DOM
.
then
(
this
.
setScrollFade
)
.
then
(()
=>
{
this
.
setScrollFade
();
this
.
focusSearchInput
();
})
.
catch
(()
=>
{
this
.
loading
=
false
;
});
...
...
@@ -207,6 +214,10 @@ export default {
this
.
hasMilestoneListMounted
=
true
;
}
},
focusSearchInput
()
{
const
{
searchBox
}
=
this
.
$refs
;
searchBox
.
$el
.
querySelector
(
'
input
'
).
focus
();
},
},
};
</
script
>
...
...
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