Skip to content

Instantly share code, notes, and snippets.

@tokafish
Last active August 29, 2015 13:56
Show Gist options
  • Save tokafish/8911052 to your computer and use it in GitHub Desktop.
Save tokafish/8911052 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="$parent.message"/>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment