Created
April 11, 2013 13:48
-
-
Save oliverm2112/5363506 to your computer and use it in GitHub Desktop.
My First App
This file contains hidden or 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 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