Skip to content

Instantly share code, notes, and snippets.

@oliverm2112
Created April 11, 2013 13:48
Show Gist options
  • Save oliverm2112/5363506 to your computer and use it in GitHub Desktop.
Save oliverm2112/5363506 to your computer and use it in GitHub Desktop.
My First App
<!DOCTYPE html>
<html ng-app>
<head>
<title>My First Angular Application</title>
</head>
<body>
<input type="text" ng-model="inputVal" placeholder="Please enter your name" value=""/>
<br>
<span ng-show="inputVal.length > 0">Hello</span> {{inputVal}}
<script src="js/lib/angular-1.1.2.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment