1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-10-02 04:48:57 +02:00
This commit is contained in:
Liu Junqi 2021-10-21 14:19:30 +08:00
parent 75c0680968
commit 1089c06d77
2 changed files with 7 additions and 4 deletions

View File

@ -54,7 +54,7 @@
<div class="box-content"> <div class="box-content">
<div class="box-content-row box-content-row-input" appBoxRow> <div class="box-content-row box-content-row-input" appBoxRow>
<label for="num-words">{{'numWords' | i18n}}</label> <label for="num-words">{{'numWords' | i18n}}</label>
<input id="num-words" type="number" min="3" max="20" (blur)="saveOptions()" <input id="num-words" type="number" min="3" max="20" (change)="lengthInput()"
[(ngModel)]="options.numWords"> [(ngModel)]="options.numWords">
</div> </div>
<div class="box-content-row box-content-row-input" appBoxRow> <div class="box-content-row box-content-row-input" appBoxRow>
@ -80,7 +80,7 @@
<div class="box-content-row box-content-row-slider" appBoxRow> <div class="box-content-row box-content-row-slider" appBoxRow>
<label for="length">{{'length' | i18n}}</label> <label for="length">{{'length' | i18n}}</label>
<input id="length" type="number" min="5" max="128" [(ngModel)]="options.length" <input id="length" type="number" min="5" max="128" [(ngModel)]="options.length"
(change)="lengthChanged()" (blur)="saveOptions()"> (change)="lengthInput()">
<input id="lengthRange" type="range" min="5" max="128" step="1" [(ngModel)]="options.length" <input id="lengthRange" type="range" min="5" max="128" step="1" [(ngModel)]="options.length"
(change)="sliderChanged()" (input)="sliderInput()"> (change)="sliderChanged()" (input)="sliderInput()">
</div> </div>

View File

@ -40,8 +40,11 @@ export class PasswordGeneratorComponent extends BasePasswordGeneratorComponent {
this.close(); this.close();
} }
lengthChanged() { async lengthInput() {
document.getElementById('length').focus(); var last = this.password;
this.saveOptions();
if(last != this.password)
await this.passwordGenerationService.addHistory(this.password);
} }
close() { close() {