"use strict"; angular.module("vocabulary") .component("vocabVideoLibrary", { templateUrl: "/js/redesign-angular/video-library/vocab-video-library.html", controller: 'vocabVideoLibraryCtrl' }) .controller('vocabVideoLibraryCtrl', ['LAZ_HTTP_SERVER', function(LAZ_HTTP_SERVER){ var ctrl = this; ctrl.navItems = [ // It may be nice to be abstract this away with more generic components { href: '#!/videoLibrary', title: 'Video Library', isExternal: false, isActive: true }, { href: LAZ_HTTP_SERVER + '/site/breakroom/default?SortByCategory=4337&SortByAlpha=NewestFirst', title: 'Breakroom', isExternal: true, isActive: false } ]; }]);