Skip to content

Instantly share code, notes, and snippets.

@ericdouglas
Created January 30, 2014 19:36
Show Gist options
  • Save ericdouglas/8717042 to your computer and use it in GitHub Desktop.
Save ericdouglas/8717042 to your computer and use it in GitHub Desktop.
Study of "Recipes With AngularJS" - Chapter 1 - Recipe 4 - Example 01
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Chapter 1 - Recipe 3 - Example 01</title>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.10/angular.min.js"></script>
</head>
<body ng-app>
<input type="text" ng-model="up">
<h1>{{ up | uppercase }}</h1>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment