featuretracker/dashboard-project-app/client/components/footer/footer.directive.js

13 lines
271 B
JavaScript
Executable File

'use strict';
angular.module('dashboardProjectApp')
.directive('footer', function() {
return {
templateUrl: 'components/footer/footer.html',
restrict: 'E',
link: function(scope, element) {
element.addClass('footer');
}
};
});