(function () { "use strict"; var streamApp = angular.module('streamApp'); streamApp.directive('focusDirective', function () { return function (scope, elem, attr) { scope.$on(attr.focusDirective, function (e) { elem[0].focus(); }); }; }); }());