Could you explain me why the following code return Error: error:areq Bad Argument?
(see live example)
<!DOCTYPE html>
<html ng-app>
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<script>
function SimpleController($scope) {
$scope.users = [
{name: 'Dave Jones', city: 'Phoenix'},
{name: 'Jane True', city:'Washington'}
];
}
</script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.4/angular.min.js"></script>
</head>
<body ng-controller="SimpleController">
<ul>
<li ng-repeat="user in users">{{ user.name }}</li>
</ul>
</body>
</html>