Skip to content

Instantly share code, notes, and snippets.

@tokafish
Last active August 29, 2015 13:56
Show Gist options
  • Save tokafish/8917324 to your computer and use it in GitHub Desktop.
Save tokafish/8917324 to your computer and use it in GitHub Desktop.
Simple Scopes
app.controller('SimpleController', function($scope) {
$scope.message = 'Hello Angular!';
});
<div ng-controller="SimpleController">
<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