mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
9 lines
203 B
CoffeeScript
9 lines
203 B
CoffeeScript
|
define [
|
||
|
"base"
|
||
|
], (App) ->
|
||
|
App.directive "focusInput", ($timeout) ->
|
||
|
return (scope, element, attr) ->
|
||
|
scope.$watch attr.focusInput, (value) ->
|
||
|
if value
|
||
|
$timeout ->
|
||
|
element.select()
|