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