(function() { "use strict"; angular.module('raz') .component('instructionalGoalInstructionalResources', { templateUrl: '/js/angular/connected-classroom/components/instructional-goal-instructional-resources.html', controller: 'InstructionalGoalInstructionalResourcesController', bindings: { resources: '<' } }) .controller('InstructionalGoalInstructionalResourcesController', ['SiteHelper', function InstructionalGoalInstructionalResourcesController(SiteHelper) { var ctrl = this; ctrl.SiteHelper = SiteHelper; } ]) })();