-
-
Save IgorMinar/1293065 to your computer and use it in GitHub Desktop.
Revisions
-
IgorMinar revised this gist
Oct 17, 2011 . 1 changed file with 2 additions and 2 deletions.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 @@ -1,6 +1,6 @@ <html> <head> <script src="http://code.angularjs.org/angular-0.10.3.js" ng:autobind></script> <script> function MyCntrl() { this.list_of_items = ['this', 'that', 'the other']; @@ -16,7 +16,7 @@ <body ng:controller="MyCntrl"> <ul> <li ng:repeat="item in list_of_items"> <input type="radio" ng:model="foo.choice" value="{{item}}" name="choice" id="item_{{$index}}"> <label for="item_{{$index}}"> <code>{{item}}</code> -
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>