(function () { 'use strict'; let GettingStarted = function ($scope, $location) { $scope.callback = function (prompt) { $location.url('storylines/add/first'); } }; GettingStarted.$inject = ['$scope', '$location']; angular.module('streamApp').controller('gettingStartedController', GettingStarted); })();