Source:hours-combined.component.js

(function () {
    'use strict';
    // Hours Combined
    angular
        .module('mohistory')
        .component('hoursCombined', {
            templateUrl: 'app/components/hours-combined/hours-combined.component.html',
            controller: hoursCombinedCtrl,
            controllerAs: 'hoursCombined',
            bindings: {
                data: '<'
            }
        });
    hoursCombinedCtrl.$inject = [];
    /**
     * This component can render the mhs:dataClass hoursAndDirections
     * when combined with the mhs:displayClasses hours-and-directions-mhs
     * @memberof mohistory
     * @name hoursCombined
     * @ngdoc component
     */
    function hoursCombinedCtrl() {
        var vm = this;
        /* ----- Variables ----- */
        vm.classNames = ['section-one', 'section-two', 'section-three'];
    };
})();