mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-28 21:07:16 +00:00
10 lines
200 B
CoffeeScript
10 lines
200 B
CoffeeScript
Darkswarm.directive "ofnFocus", ->
|
|
restrict: "A"
|
|
link: (scope, element, attrs) ->
|
|
scope.$watch attrs.ofnFocus, ((focus) ->
|
|
focus and element.focus()
|
|
return
|
|
), true
|
|
|
|
return
|