mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
10 lines
193 B
CoffeeScript
10 lines
193 B
CoffeeScript
|
define [
|
||
|
"base"
|
||
|
], (App) ->
|
||
|
App.directive 'focusOn', ($timeout) ->
|
||
|
return {
|
||
|
restrict: 'AC'
|
||
|
link: (scope, element, attrs) ->
|
||
|
scope.$on attrs.focusOn, () ->
|
||
|
element.focus()
|
||
|
}
|