Created
November 3, 2014 22:19
-
-
Save joncodo/eb91269c39867abbeb37 to your computer and use it in GitHub Desktop.
This file contains 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
<!DOCTYPE html> | |
<html data-ng-app> | |
<head> | |
<script src="/bower_components/angular/angular.js"></script> | |
</head> | |
<body> | |
<input ng-controller="DemoController"/> | |
<div> | |
{{name}} | |
</div> | |
<script type="text/javascript"> | |
var app = angular.module("demo", []); | |
app.controller('DemoController', [function () { | |
//The body of demo controller | |
}]); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment