style(tap-click): rename activable to activatable

This commit is contained in:
Brandy Carney
2018-09-05 13:17:24 -04:00
parent 6d6f70ce09
commit 6ed4690834
12 changed files with 17 additions and 18 deletions

View File

@ -75,9 +75,8 @@ export class FabButton {
}
hostData() {
return {
'ion-activable': !this.disabled,
'ion-activatable': true,
class: {
...createColorClasses(this.color),
...this.getFabClassMap(),
@ -102,7 +101,7 @@ export class FabButton {
<span class="fab-button-inner">
<slot></slot>
</span>
{this.mode === 'md' && <ion-ripple-effect />}
{this.mode === 'md' && <ion-ripple-effect></ion-ripple-effect>}
</TagType>
);
}