Bump version to 5.0.0-EE
[src/app-framework-binder.git] / test / angular.html
1 <!doctype html>
2 <html>
3 <body>
4   <div ng-controller="MyController">
5     Hello {{greetMe}}!
6   </div>
7   <script src="http://code.angularjs.org/1.5.5/angular.js"></script>
8   <script src="AfbAngular.js"></script>
9
10   <script>
11     angular.module('myApp', [])
12       .controller('MyController', ['$scope', function ($scope) {
13         $scope.greetMe = 'World';
14       }]);
15
16     angular.element(document).ready(function() {
17       angular.bootstrap(document, ['myApp']);
18     });
19   </script>
20 </body>
21 </html>