I've just started with AngularJS and I was going through a set of Hello World examples and I can't get them running on branch 1.3 of the the library.
HTML code
<html ng-app>
<head>
<script src="angular.js"></script>
<script src="controller.js"></script>
</head>
<body>
<div ng-controller='HelloController'>
<input ng-model='greeting.text'>
<p>{{greeting.text}}, World</p>
</div>
</body>
</html>
controller.js
function HelloController($scope) {
$scope.greeting = { text: 'Hello' };
}
This works fine in 1.2. I couldn't find the changes that have been made in 1.3 that cause this.