Created
March 28, 2011 22:25
-
-
Save mhevery/891437 to your computer and use it in GitHub Desktop.
Revisions
-
mhevery created this gist
Mar 28, 2011 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,29 @@ <html> <head> <script src="http://code.angularjs.org/angular-0.9.13.js" ng:autobind></script> <script> function MyCntrl() { this.list_of_items = ['this', 'that', 'the other']; this.foo = {choice:'that'}; } MyCntrl.prototype = { loadData: function(){ this.foo = {choice:'that'}; } } </script> </head> <body ng:controller="MyCntrl"> <ul> <li ng:repeat="item in list_of_items"> <input type="radio" name="foo.choice" value="{{item}}" id="item_{{$index}}"> <label for="item_{{$index}}"> <code>{{item}}</code> </label> </li> <a class="action" href="" ng:click="loadData()">Load</a> </ul> choice: {{foo}} </body> </html>