update component properties to array

https://github.com/angular/angular/issues/2013
This commit is contained in:
Adam Bradley
2015-05-29 09:34:08 -05:00
parent 2360bb8cc9
commit ddbb6ae5e1
7 changed files with 27 additions and 27 deletions

View File

@ -10,9 +10,9 @@ import {IonicComponent} from 'ionic/config/component'
@Component({
selector: 'ion-checkbox',
properties: {
checked: 'checked'
},
properties: [
'checked'
],
hostListeners: {
'^click': 'onClick($event)'
}