(function () { "use strict"; angular.module('shared') .component('printButton', { templateUrl: '/shared/js/angular/ui/print-button.html', controller: 'printButtonController' }) .controller('printButtonController', ['$window', function ($window) { var ctrl = this; ctrl.print = function () { $window.print(); } }]); })();