(function () { "use strict"; var Register = function ($scope, $location, userService) { $('.waiting').hide(); $scope.callback = function () { $location.url('plan'); }; }; Register.$inject = ['$scope', '$location', 'userService']; angular.module('streamApp').controller('registerController', Register); })();