Angular: Nested scopes
http://angularjs.org/ Model won't be updated in nested scopes.
HTML
<script src="http://code.angularjs.org/angular-1.0.0rc8.js"></script>
<script src="http://code.jquery.com/jquery-1.7.2.min.js"></script>
<html ng-app>
<body ng-controller="Controller">
<div ng-init="numbers=[11,22,33]">
<div ng-repeat="n in numbers">
<input type="text" ng-model="n"/> [{{n}}]
</div>
</div>
<input type="text" ng-list="numbers" />
</body>
</html>
JavaScript
function Controller($scope) {
}