1234567891011121314 |
- "use strict"
- angular.module('domainManagerApp')
- .directive('footer', function () {
- return {
- restrict: 'A',
- replace: true,
- templateUrl: "../../views/footer.html",
- controller: ['$scope', '$filter', function ($scope, $filter) {
-
- }]
- }
- });
|