UNPKG

fruitstand

Version:
18 lines 457 B
<!doctype html> <html ng-app="myApp"> <head> <title>AngularJS Dependency Injection</title> </head> <body> <div ng-controller="controllerA"> <h2>Application Message:</h2> {{message}} </div><hr> <div ng-controller="controllerB"> <h2>Module Message:</h2> {{message}} </div> <script src="http://code.angularjs.org/1.2.9/angular.min.js"></script> <script src="/js/injector.js"></script> </body> </html>