Angular checkboxes example

by johnwun

HTML

<script src="http://docs-next.angularjs.org/angular-0.10.5.min.js" ng:autobind></script>
<div ng:controller="MyCntrl">
<ul>
    <li ng:repeat="color in colors">
        {{color}}
        <input type="checkbox" ng:model="values[color]">
    </li>
</ul>
Values:
{{values}}
</div>

JavaScript

function MyCntrl(){
    this.values = {};
    this.colors = ['Red', 'Blue', 'Green', 'Orange', 'Yellow'];
}