(function () { "use strict"; angular.module('streamApp').controller("howController", StreamController); StreamController.$inject = ['$scope', '$routeParams']; function StreamController($scope, $routeParams) { $('.waiting').hide(); }; }());