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