summaryrefslogtreecommitdiffstats
path: root/test/angular.html
diff options
context:
space:
mode:
authorJosé Bollo <jose.bollo@iot.bzh>2017-12-04 17:19:12 +0100
committerJosé Bollo <jose.bollo@iot.bzh>2017-12-04 17:19:12 +0100
commitddeda4952121007e8b0a7207528901be911ce2b4 (patch)
treec5196851ffbdf5e1041e742f1e213fe3f0987720 /test/angular.html
parent5ed38596a529c1a63d6a3fab72861d14fbf1401c (diff)
Remove unused and confusing files
Change-Id: I8362d8d7bf0f11a41ef2275614e9ef2bcf0fee29 Signed-off-by: José Bollo <jose.bollo@iot.bzh>
Diffstat (limited to 'test/angular.html')
-rw-r--r--test/angular.html21
1 files changed, 0 insertions, 21 deletions
diff --git a/test/angular.html b/test/angular.html
deleted file mode 100644
index f7e25756..00000000
--- a/test/angular.html
+++ /dev/null
@@ -1,21 +0,0 @@
-<!doctype html>
-<html>
-<body>
- <div ng-controller="MyController">
- Hello {{greetMe}}!
- </div>
- <script src="http://code.angularjs.org/1.5.5/angular.js"></script>
- <script src="AfbAngular.js"></script>
-
- <script>
- angular.module('myApp', [])
- .controller('MyController', ['$scope', function ($scope) {
- $scope.greetMe = 'World';
- }]);
-
- angular.element(document).ready(function() {
- angular.bootstrap(document, ['myApp']);
- });
- </script>
-</body>
-</html>