fix(ripple-effect): using method invocation instead of events

fixes #15318
This commit is contained in:
Manu Mtz.-Almeida
2018-08-24 22:58:12 +02:00
parent 926758e585
commit 4a45effe8c
16 changed files with 30 additions and 82 deletions

View File

@ -75,7 +75,7 @@ export class SegmentButton {
disabled={this.disabled}
onClick={() => this.checked = true }>
<slot></slot>
{ this.mode === 'md' && <ion-ripple-effect tapClick={true} parent={this.el}/> }
{ this.mode === 'md' && <ion-ripple-effect /> }
</button>
];
}