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