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>2018-01-03 09:41:41 +0100
commit366efa1adaafbe996a03a98a73f149cb4fc56c26 (patch)
tree559726b2a7f74c3f652ac95a15c26b96c7e496fa /test/angular.html
parenta0bcdbcab352e311f320ded7af2205eec632296a (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>