Angular: Empty Fiddle

http://angularjs.org/

by boneskull

HTML

<script src="http://code.angularjs.org/1.1.5/angular.min.js"></script>
<div ng-controller="MyCtrl">
    <ul>
        <li ng-repeat="bear in bears">{{bear.name}}:
            <input type="text" ng-model="bear.color" />
        </li>
    </ul>
</div>

JavaScript

var myApp = angular.module('myApp', []);

function MyCtrl($scope) {
    $scope.bears = [{
        name: 'Fozzy',
        color: 'orange'
    }, {
        name: 'Knut',
        color: 'white'
    }, {
        name: 'Yogi',
        color: 'brown'
    }];

}