(function () {
'use strict';
// Main site footer
angular
.module('mohistory')
.component('siteFooter', {
templateUrl: 'app/components/site-footer/site-footer.component.html',
controller: siteFooterCtrl,
controllerAs: 'siteFooter',
bindings: {
footer: '<',
}
});
siteFooterCtrl.$inject = [];
/**
* Footer for the mohistory app. Information to populate the footer is passed
* in via the parent component.
* @memberof mohistory
* @name siteFooter
* @ngdoc component
*/
function siteFooterCtrl() {
var vm = this;
};
})();