This file contains 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
app.controller('SimpleController', function($scope) { | |
$scope.message = 'Hello Angular!'; | |
}); |
This file contains 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
<div ng-controller="EditController"> | |
<span>{{message}}</span> | |
<div ng-if="userIsAdmin"> | |
<span>Edit Message</span> | |
<input ng-model="$parent.message"/> | |
</div> | |
</div> |
This file contains 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
<div ng-controller="EditController"> | |
<span>{{message}}</span> | |
<div ng-if="userIsAdmin"> | |
<span>Edit Message</span> | |
<input ng-model="message"/> | |
</div> | |
</div> |
NewerOlder