This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <html ng-app="ng-demo-app"> | |
| <head> | |
| <title>AngularJS simple app demo</title> | |
| </head> | |
| <body ng-controller="MainCtrl"> | |
| <input type="text" ng-model="name" ng-required> | |
| <div>{{name}}</div> | |
| <div ng-controller="ChildCtrl"> | |
| <input type="text" ng-model="salut"> | |
| <div>{{salutation}}</div> |