Skip to content

Instantly share code, notes, and snippets.

@david-pm
Created July 17, 2015 21:59
Show Gist options
  • Select an option

  • Save david-pm/94bd17edeeb256915690 to your computer and use it in GitHub Desktop.

Select an option

Save david-pm/94bd17edeeb256915690 to your computer and use it in GitHub Desktop.
ngSwitch
<body ng-controller="MainController">
<h4>Which Star Wars Episodes Were Good/Bad?</h4>
<div ng-switch on="quality">
<div ng-switch-when="bad">
Episodes IV, V ,VI
</div>
<div ng-switch-when="good">
Episodes I, II, III
</div>
</div>
<label>
Good <input type="radio" name="quality" ng-model="quality" value="good" />
</label>
<label>
Bad <input type="radio" name="quality" ng-model="quality" value="bad" />
</label>
</body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment