Source:super-block.component.js

(function () {
	'use strict';
	// Super block
	angular
		.module('mohistory')
		.component('superBlock', {
			templateUrl: 'app/components/super-block/super-block.component.html',
			controller: superBlockCtrl,
			controllerAs: 'superBlock',
			bindings: {
				data:"<"
			}
		});
	superBlockCtrl.$inject = [];
	/**
	 * This component can render the dataClass 'superBlock', when combined with any
	 * of the following displayClasses: 'default', 'contactBlock', 'hoursDirectionText',
	 * 'press-textborder', 'featured-press-release', 'press-stay-in-touch'.
	 * @memberof mohistory
     * @name superBlock
     * @ngdoc component
	 */
	function superBlockCtrl() {
		var vm = this;
	};
})();