Skip to content

Instantly share code, notes, and snippets.

@tihuan
Created May 23, 2014 18:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tihuan/2f12c69b7679c6085d39 to your computer and use it in GitHub Desktop.
Save tihuan/2f12c69b7679c6085d39 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html ng-app>
<head>
<meta name="description" content="Controller example" />
<script src="http://code.jquery.com/jquery.min.js"></script>
<link href="http://getbootstrap.com/2.3.2/assets/css/bootstrap.css" rel="stylesheet" type="text/css" />
<link href="http://getbootstrap.com/2.3.2/assets/css/bootstrap-responsive.css" rel="stylesheet" type="text/css" />
<script src="http://getbootstrap.com/2.3.2/assets/js/bootstrap.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.12/angular.min.js"></script>
<meta charset=utf-8 />
<title>JS Bin</title>
</head>
<body ng-controller="GreeterCtrl">
"Hi, my name is {{ greetee.name }} and I am {{ greetee.age }} years old."
<div>{{ greetee2 }}</div>
<div>{{ greetee3.name }}</div>
</body>
</html>
function GreeterCtrl($scope) {
$scope.greetee = {name: "Timmy Huang", age: 26};
$scope.greetee2 = "This shit is fun2!";
$scope.greetee3 = {name: "My name is: Timmy"};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment