Skip to content

Instantly share code, notes, and snippets.

@kevinch
kevinch / autofocus.js
Last active January 17, 2017 13:49 — forked from mlynch/autofocus.js
AngularJS Autofocus directive
/**
* the HTML5 autofocus directive from mlynch/autofocus.js (gist.github.com/mlynch/dd407b93ed288d499778) in es6
* I have changed the attribute to auto-focus not to mess with the regular html attribute autofocus
*
* Usage:
* <input type="text" auto-focus>
*
* License: MIT
*/
export function AutofocusDirective($parse, $timeout) {