(function() { 'use strict'; angular.module('shared') .component('parentLetterCustomizeButton', { controller: 'ParentLetterCustomizeButton', templateUrl: '/shared/js/angular/ui/parent-letter-customize-button.html' }) .controller('ParentLetterCustomizeButton', ['ParentLetterCustomize', function ParentLetterCustomizeButtonController(ParentLetterCustomize) { var ctrl = this; ctrl.showParentLetterCustomizeModal = function () { ParentLetterCustomize.show(); }; }]); })();