Skip to content

Instantly share code, notes, and snippets.

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