up debounce text pair
This commit is contained in:
parent
949641d881
commit
359367c4e3
2 changed files with 71 additions and 3 deletions
|
@ -9,7 +9,8 @@
|
|||
@if (fromText.length > 0) {
|
||||
<button (click)="emptyText('fromText')" class="delete-button button">x</button>
|
||||
}
|
||||
<textarea [(ngModel)]="fromText" cols="30" id="from_text" name="from_text"
|
||||
<textarea (keyup)="onFromTextChanged()" [(ngModel)]="fromText" cols="30" id="from_text"
|
||||
name="from_text"
|
||||
placeholder=""
|
||||
rows="10"></textarea>
|
||||
<button (click)="clickFileUpload(fileUpload)" class=" click-file-upload is-outlined">
|
||||
|
@ -23,12 +24,19 @@
|
|||
</div>
|
||||
<div class="column">
|
||||
|
||||
|
||||
<div id="toText">
|
||||
@if (toText.length > 0) {
|
||||
<button (click)="emptyText('toText')" class="delete-button button">x</button>
|
||||
}
|
||||
<textarea [(ngModel)]="toText" cols="30" id="to_text" name="to_text" rows="10"></textarea>
|
||||
</div>
|
||||
@if (loadingResume) {
|
||||
<div class="loading">
|
||||
loading...
|
||||
</div>
|
||||
}
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue