(function() { "use strict"; angular.module('shared') .component('heading', { bindings: { level: '<', overrideClass: '@?' }, templateUrl: '/shared/js/angular/ui/heading.html', transclude: true, controller: "Heading" }) .controller('Heading', [ function(){ var ctrl = this; } ]); })();