Created
August 16, 2014 20:09
-
-
Save aaronfrost/fee9e744ff2761c56e0c to your computer and use it in GitHub Desktop.
Multiple Scopes
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!--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