So I'm just now starting to get into angularJS and things were fine with tests until I got into using controllers with ng-repeat. It seems that when I use it it just doesn't connect to the controller.
I checked everything. The scope is fine and the location to the angular.js library is fine but the list just will not show up for some reason. This even happened with some copy paste examples as well, as I took those to see if there was an error in what i came up with, also used older version of the library, same effect, nothing gets put in the list.
<html ng-app>
<head>
<script src="lib/angular.min.js"></script>
</head>
<body>
<div class="contrainer" ng-controller="SimpleController">
<h3>Simple Controller Test</h3>
<br />
Name:
<br />
<input type="text" ng-model="name" />
<ul>
<li ng-repeat="chara in characters">
{{chara.name}} - {{chara.location}}
</li>
</ul>
</div>
<script>
function SimpleController($scope) {
$scope.characters = [
{name: 'Link', location: 'Hyrule'},
{name: 'Pit', location: 'Angel Land'},
{name: 'Samus', location: 'Brinstar'}
{name: 'Takamaru', location: 'Japan'}
];
}
</script>
</body>
</html>