diff --git a/src/pages/send/confirm/confirm.html b/src/pages/send/confirm/confirm.html index 372119016..a0ed412b6 100644 --- a/src/pages/send/confirm/confirm.html +++ b/src/pages/send/confirm/confirm.html @@ -122,6 +122,5 @@ - - + + \ No newline at end of file diff --git a/src/pages/send/confirm/confirm.ts b/src/pages/send/confirm/confirm.ts index ba88afba3..d8154a14d 100644 --- a/src/pages/send/confirm/confirm.ts +++ b/src/pages/send/confirm/confirm.ts @@ -253,23 +253,23 @@ export class ConfirmPage { private setButtonText(isMultisig: boolean, isPayPro: boolean): void { if (isPayPro) { - if (this.isCordova && !this.isWindowsPhoneApp) { - this.buttonText = this.translate.instant('Slide to pay'); - } else { - this.buttonText = this.translate.instant('Click to pay'); - } + //if (this.isCordova && !this.isWindowsPhoneApp) { + // this.buttonText = this.translate.instant('Slide to pay'); + // } else { + this.buttonText = this.translate.instant('Click to pay'); + // } } else if (isMultisig) { - if (this.isCordova && !this.isWindowsPhoneApp) { - this.buttonText = this.translate.instant('Slide to accept'); - } else { - this.buttonText = this.translate.instant('Click to accept'); - } + //if (this.isCordova && !this.isWindowsPhoneApp) { + // this.buttonText = this.translate.instant('Slide to accept'); + //} else { + this.buttonText = this.translate.instant('Click to accept'); + //} } else { - if (this.isCordova && !this.isWindowsPhoneApp) { - this.buttonText = this.translate.instant('Slide to send'); - } else { - this.buttonText = this.translate.instant('Click to send'); - } + //if (this.isCordova && !this.isWindowsPhoneApp) { + // this.buttonText = this.translate.instant('Slide to send'); + //} else { + this.buttonText = this.translate.instant('Click to send'); + //} } } diff --git a/src/pages/txp-details/txp-details.ts b/src/pages/txp-details/txp-details.ts index 198795315..b8769d64b 100644 --- a/src/pages/txp-details/txp-details.ts +++ b/src/pages/txp-details/txp-details.ts @@ -120,18 +120,18 @@ export class TxpDetailsPage { }).length == this.tx.requiredSignatures - 1; if (lastSigner) { - if (this.isCordova && !this.isWindowsPhoneApp) { - this.buttonText = this.translate.instant('Slide to send'); - } else { - this.buttonText = this.translate.instant('Click to send'); - } + //if (this.isCordova && !this.isWindowsPhoneApp) { + // this.buttonText = this.translate.instant('Slide to send'); + //} else { + this.buttonText = this.translate.instant('Click to send'); + //} this.successText = this.translate.instant('Payment Sent'); } else { - if (this.isCordova && !this.isWindowsPhoneApp) { - this.buttonText = this.translate.instant('Slide to accept'); - } else { - this.buttonText = this.translate.instant('Click to accept'); - } + //if (this.isCordova && !this.isWindowsPhoneApp) { + // this.buttonText = this.translate.instant('Slide to accept'); + //} else { + this.buttonText = this.translate.instant('Click to accept'); + //} this.successText = this.translate.instant('Payment Accepted'); } }