summaryrefslogtreecommitdiffstats
path: root/reporting/pages/app/scripts/directives/mydirective.js
diff options
context:
space:
mode:
Diffstat (limited to 'reporting/pages/app/scripts/directives/mydirective.js')
-rw-r--r--reporting/pages/app/scripts/directives/mydirective.js18
1 files changed, 0 insertions, 18 deletions
diff --git a/reporting/pages/app/scripts/directives/mydirective.js b/reporting/pages/app/scripts/directives/mydirective.js
deleted file mode 100644
index 1d7177a..0000000
--- a/reporting/pages/app/scripts/directives/mydirective.js
+++ /dev/null
@@ -1,18 +0,0 @@
-'use strict';
-
-/**
- * @ngdoc directive
- * @name opnfvApp.directive:myDirective
- * @description
- * # myDirective
- */
-angular.module('opnfvApp')
- .directive('myDirective', function () {
- return {
- template: '<div></div>',
- restrict: 'E',
- link: function postLink(scope, element, attrs) {
- element.text('this is the myDirective directive');
- }
- };
- });