TwoToc code
[YouAndWeb_TwoToc] / client / components / footer / footer.directive.js
1 'use strict';
2
3 angular.module('dashboardApp')
4   .directive('footer', function () {
5     return {
6       templateUrl: 'components/footer/footer.html',
7       restrict: 'E',
8       link: function (scope, element) {
9         element.addClass('footer');
10       }
11     };
12   });