(function(){ 'use strict'; angular.module('shared') .component('testExternalLinks', { controller: 'testExternalLinksController', templateUrl: '/shared/js/angular/core/test-external-links.html' }) .controller('testExternalLinksController', ['windowService', function(windowService) { var ctrl = this; ctrl.onExternalLink = function(){ windowService.redirect('https://google.com'); }; ctrl.onExternalTrackingLink = function(){ windowService.redirect("https://local.accounts.learninga-z.com"); }; ctrl.onInteralFedereatedLink = function(){ windowService.redirect("/auth/federate.php"); }; ctrl.onInternalLink = function(){ windowService.redirect("/books/leveled-books/"); } }]); })();