(function () { "use strict"; angular.module('streamApp').controller("suggestionsController", SuggestionsController); SuggestionsController.$inject = ['$scope', "$location"]; function SuggestionsController($scope, $location) { $scope.callbackContinue = () => $location.url("/"); } })();