(function(){ 'use strict'; angular.module('raz') .component('phonicsLessonVideos', { templateUrl: '/js/angular/phonics-lesson/components/phonics-lesson-videos.html', controller: 'PhonicsLessonVideosController', bindings: { videos: '<' } }) .controller('PhonicsLessonVideosController', PhonicsLessonVideosController); PhonicsLessonVideosController.$inject = ['_']; function PhonicsLessonVideosController(_) { var ctrl = this; ctrl.$onInit = function() {}; } })();