Skip to content

Instantly share code, notes, and snippets.

@qetr1ck-op
Created September 22, 2015 19:53
Show Gist options
  • Save qetr1ck-op/35a0dd1b8e16ff0bec4b to your computer and use it in GitHub Desktop.
Save qetr1ck-op/35a0dd1b8e16ff0bec4b to your computer and use it in GitHub Desktop.
<div ng-controller="navCtrl">
<span>{{user}}</span> <!-- won't be updating -->
<div ng-controller="loginCtrl">
<span>{{user}}</span>
<input ng-model="user"></input> <!-- changes update only loginCtrl scope -->
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment