Skip to content

Instantly share code, notes, and snippets.

@tokafish
Last active August 29, 2015 13:56
Show Gist options
  • Save tokafish/8917493 to your computer and use it in GitHub Desktop.
Save tokafish/8917493 to your computer and use it in GitHub Desktop.
Multiple scopes
app.controller('HelloController', function($scope) {
$scope.message = 'Hello World!';
});
app.controller('GoodbyeController', function($scope) {
$scope.message = 'Goodbye World!';
});
<div ng-controller="HelloController">
<input ng-model="message">
<span>{{message}}</span>
</div>
<div ng-controller="GoodbyeController">
<input ng-model="message">
<span>{{message}}</span>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment