UNPKG

fruitstand

Version:
18 lines 461 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.3.0/angular.min.js"></script> <script src="js/inject_custom.js"></script> </body> </html>