Skip to content

Commit

Permalink
fixed #459 (#482)
Browse files Browse the repository at this point in the history
  • Loading branch information
ohager authored and blankey1337 committed May 29, 2019
1 parent 2f15897 commit 71640ba
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@

<burst-fee-selector [fees]="fees" [(feeNQT)]="feeNQT"></burst-fee-selector>

<mat-checkbox (click)="showMessage=!showMessage">{{ "add_message_q" | i18n }}</mat-checkbox>
<mat-checkbox labelPosition="before" (click)="showMessage=!showMessage">{{ "add_message_q" | i18n }}</mat-checkbox>

<div *ngIf="showMessage">
<mat-form-field>
<textarea matInput [(ngModel)]="message" name="message" placeholder="{{ 'message' | i18n }}"></textarea>
</mat-form-field>
<mat-checkbox [(ngModel)]="encrypt" name="encrypt">{{ "encrypt_message" | i18n }}</mat-checkbox>
<mat-checkbox labelPosition="before" [(ngModel)]="encrypt" name="encrypt">{{ "encrypt_message" | i18n }}?</mat-checkbox>
</div>

<div *ngIf="advanced">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<form (ngSubmit)="onSubmit($event);" #sendBurstForm="ngForm">

<mat-checkbox (click)="toggleSameAmount()" class="same-amount">{{ "same_out" | i18n }}</mat-checkbox>
<mat-checkbox labelPosition="before" (click)="toggleSameAmount()" class="same-amount">{{ "same_out" | i18n }}?</mat-checkbox>

<mat-form-field *ngIf="sameAmount">
<input matInput [(ngModel)]="amountNQT" name="amountNQT" placeholder="{{ 'amount' | i18n }}">
Expand Down

0 comments on commit 71640ba

Please sign in to comment.