Autofocus on search modal
parent
979e21537a
commit
656858a95a
|
@ -5,6 +5,7 @@
|
|||
|
||||
### Features
|
||||
- Show the reference of entities in search results (thanks to [@artlepool](https://github.com/artlepool))
|
||||
- Autofocus on search modal
|
||||
|
||||
### Misc
|
||||
- Improve performance: remove some unnecessary calls to the api.
|
||||
|
|
|
@ -127,7 +127,8 @@ SearchBoxDirective = (projectService, $lightboxService, $navurls, $location, $ro
|
|||
openLightbox = () ->
|
||||
project = projectService.project
|
||||
|
||||
$lightboxService.open($el)
|
||||
$lightboxService.open($el).then () ->
|
||||
$el.find("#search-text").focus()
|
||||
|
||||
$el.on "submit", "form", submit
|
||||
|
||||
|
|
Loading…
Reference in New Issue