chore(): rename properties to inputs, events to outputs

This commit is contained in:
Adam Bradley
2015-10-06 16:28:29 -05:00
parent 5d6a367fa3
commit 9bc09300df
25 changed files with 46 additions and 43 deletions

View File

@ -12,7 +12,7 @@ import {dom} from 'ionic/util';
@IonicComponent({
selector: 'ion-segment',
appInjector: [ NgControl ],
properties: [
inputs: [
'value'
],
host: {
@ -125,7 +125,7 @@ export class Segment extends Ion {
*/
@IonicDirective({
selector: 'ion-segment',
//properties: ['value'],
//inputs: ['value'],
host: {
'(change)': 'onChange($event.target.value)',
'(input)': 'onChange($event.target.value)',
@ -192,7 +192,7 @@ export class SegmentControlValueAccessor {
*/
@IonicDirective({
selector: 'ion-segment-button',
properties: [
inputs: [
'value'
],
host: {