Files
ionic-framework/demos/directive/checkbox/simple/index.html
Andrew Joslin 1254fcde01 chore(): e2e tests from demos, reorganize gulpfile
Conflicts:
	config/protractor.conf.js
	gulpfile.js
2014-05-28 11:48:40 -06:00

26 lines
582 B
HTML

---
name: simple
component: ionCheckbox
---
<ion-header-bar class="bar-positive">
<h1 class="title">
Checkbox: Simple Usage
</h1>
</ion-header-bar>
<ion-content ng-controller="CheckboxSimpleCtrl" class="padding">
<h4>Your pizza has {{toppings()}}!</h4>
<ion-checkbox ng-model="pizza.pepperoni">
Pepperoni?
</ion-checkbox>
<ion-checkbox ng-model="pizza.sausage">
Sausage?
</ion-checkbox>
<ion-checkbox ng-model="pizza.jalapenos">
Jalapeno?
</ion-checkbox>
<ion-checkbox ng-model="pizza.anchovies">
Anchovies?
</ion-checkbox>
</ion-content>