Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 296 Bytes

README.md

File metadata and controls

12 lines (9 loc) · 296 Bytes

angular-init-focus

Attribute directive to automatically focus on new elements upon creation.

Usage

  <div ng-repeat="answer in $ctrl.items">
    <input type="text" init-focus>
  </div>
  <button type="button" class="btn btn-link" ng-click="$ctrl.items.push({});">Add</button>