(function () { "use strict"; angular.module('streamApp').controller("timelineAddController", TimelinesController); TimelinesController.$inject = ['$scope', 'userService', '$location', '$routeParams']; function TimelinesController($scope, userService, $location, $routeParams) { $scope.callback = function (id) { $location.url(`/timelines/${id}/questions`); }; } })();