Autofocus on search modal

stable
Juanfran 2015-06-01 11:42:43 +02:00
parent 979e21537a
commit 656858a95a
2 changed files with 3 additions and 1 deletions

View File

@ -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.

View File

@ -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