(function () {
'use strict';
// Hours and Directions block
angular
.module('mohistory')
.component('hoursAndDirections', {
templateUrl: 'app/components/hours-and-directions/hours-and-directions.component.html',
controller: hoursAndDirectionsCtrl,
controllerAs: 'hoursDirect',
bindings: {
data: '<'
}
});
hoursAndDirectionsCtrl.$inject = [];
/**
* This component can render the mhs:dataClass hoursAndDirections
* when combined with any of the following mhs:displayClasses:
* hours-and-directions-mhm, hours-and-directions-lrc,
* hours-and-directions-sm.
* @memberof mohistory
* @name hoursDirections
* @ngdoc component
*/
function hoursAndDirectionsCtrl() {
var vm = this;
};
})();