Skip to content

Instantly share code, notes, and snippets.

@aaronfrost
Created August 16, 2014 20:09
Show Gist options
  • Save aaronfrost/fee9e744ff2761c56e0c to your computer and use it in GitHub Desktop.
Save aaronfrost/fee9e744ff2761c56e0c to your computer and use it in GitHub Desktop.
Multiple Scopes
<!--Parent Controller-->
<div ng-controller="ParentController">
<!--First Child Controller-->
<div ng-controller="ChildAController">
<button ng-click="handleClick()">Click This</button>
</div>
<!--Second Child Controller-->
<div ng-controller="ChildBController">
<button ng-click="handleClick()">Click This</button>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment