overleaf/services/web/public/coffee/app/directives/focusInput.coffee
2014-06-18 11:53:18 +01:00

9 lines
No EOL
203 B
CoffeeScript

define [
"base"
], (App) ->
App.directive "focusInput", ($timeout) ->
return (scope, element, attr) ->
scope.$watch attr.focusInput, (value) ->
if value
$timeout ->
element.select()