'use strict';
angular.module('gafMobileApp')
.directive('mobileFooter', function() {
return {
restrict: 'E',
templateUrl: 'components/mobile-footer/mobile-footer.html',
controller: function() {
this.year = new Date().getFullYear();
},
controllerAs: 'footerCtrl'
};
});