Skip to content

Instantly share code, notes, and snippets.

@Eugeny
Created September 1, 2021 09:00
Show Gist options
  • Save Eugeny/872994d9594dbc0e04d0f67bd5d01e08 to your computer and use it in GitHub Desktop.
Save Eugeny/872994d9594dbc0e04d0f67bd5d01e08 to your computer and use it in GitHub Desktop.
autofocus.js
export const autofocus = /* @ngInject */ $timeout => ({
restrict: 'A',
link (_$scope, element) {
$timeout(() => element[0].focus())
},
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment