mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-29 21:17:17 +00:00
7 lines
213 B
CoffeeScript
7 lines
213 B
CoffeeScript
Darkswarm.directive "focusSearch", ->
|
|
restrict: 'A'
|
|
link: (scope, element, attr)->
|
|
element.bind 'click', (event) ->
|
|
# Focus seach field, ready for typing
|
|
$(element).siblings('#search').focus()
|