Skip to content

Instantly share code, notes, and snippets.

View robertu7's full-sized avatar
🏁
#0d6763, #c0a46b

robertu robertu7

🏁
#0d6763, #c0a46b
View GitHub Profile
@robertu7
robertu7 / autofocus.js
Last active August 29, 2015 14:16 — forked from mlynch/autofocus.js
AngularJS Directive:Autofocus 基於是否為 Mobile Browser
/**
* the HTML5 autofocus property can be finicky when it comes to dynamically loaded
* templates and such with AngularJS. Use this simple directive to
* tame this beast once and for all.
*
* Usage:
* <input type="text" autofocus>
*/
angular.module('autofocusDirective', [])
.directive('autofocus', ['$rootScope', '$window', '$timeout', function ($rootScope, $window, $timeout){