0.1.0 • Published 9 years ago

angular-autofocus v0.1.0

Weekly downloads
3
License
MIT
Repository
-
Last release
9 years ago

angular-autofoucs

Simple directive that observes a passed in attribute that sets focus on the element or finds an input that can be focused on.

Usage

angular.module('testModule', ['angular-booleanTranslator']);

angular.module('testController', function($scope) {
  $scope.testCondition = true;
});
<div ng-controller="testControler">
  <input type="text" autofocus="{{testCondition}}"/>
</div>

Nice To Haves:

Add a more definitive list of focusable inputs other than just INPUT