Skip to content

Instantly share code, notes, and snippets.

@in-async
Created March 11, 2015 05:37
Show Gist options
  • Save in-async/af06861653e7ce038b15 to your computer and use it in GitHub Desktop.
Save in-async/af06861653e7ce038b15 to your computer and use it in GitHub Desktop.
<html>
<body>
<div id="appContent">
<div>
<p>{{hello}}</p>
<input ng-model="hello">
</div>
</div>
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.3.2/angular.min.js"></script>
<script>
angular.module('myapp', []);
angular.bootstrap(document.getElementById('appContent'), ['myapp']);
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment