summaryrefslogtreecommitdiffstats
path: root/js/app/directives/autofocus.coffee
blob: 98621b65f0f05968368b48afdc6302fce0257629 (plain)
1
2
3
4
5
6
angular.module('News').directive 'newsAutoFocus', ->
	directive =
		restrict: 'A'
		link: (scope, elm, attrs) ->
			$(window).load ->
				$(elm).focus()