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