Skip to content

Instantly share code, notes, and snippets.

@tokafish
Created February 10, 2014 18:03
Show Gist options
  • Save tokafish/8921013 to your computer and use it in GitHub Desktop.
Save tokafish/8921013 to your computer and use it in GitHub Desktop.
ngModel and scope inheritance
<div ng-controller="EditController">
<span>{{message.content}}</span>
<div ng-if="userIsAdmin">
<span>Edit Message</span>
<input ng-model="message.content"/>
</div>
</div>
app.controller('EditController', function($scope) {
$scope.userIsAdmin = true;
$scope.message = {
content: 'Redact me'
};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment