mirror of
https://github.com/bitwarden/browser.git
synced 2024-12-27 17:18:04 +01:00
fix issue #1933
This commit is contained in:
parent
75c0680968
commit
80d4739757
@ -54,7 +54,7 @@
|
||||
<div class="box-content">
|
||||
<div class="box-content-row box-content-row-input" appBoxRow>
|
||||
<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)="saveOptions()"
|
||||
[(ngModel)]="options.numWords">
|
||||
</div>
|
||||
<div class="box-content-row box-content-row-input" appBoxRow>
|
||||
@ -80,7 +80,7 @@
|
||||
<div class="box-content-row box-content-row-slider" appBoxRow>
|
||||
<label for="length">{{'length' | i18n}}</label>
|
||||
<input id="length" type="number" min="5" max="128" [(ngModel)]="options.length"
|
||||
(change)="lengthChanged()" (blur)="saveOptions()">
|
||||
(change)="saveOptions()">
|
||||
<input id="lengthRange" type="range" min="5" max="128" step="1" [(ngModel)]="options.length"
|
||||
(change)="sliderChanged()" (input)="sliderInput()">
|
||||
</div>
|
||||
|
@ -40,10 +40,6 @@ export class PasswordGeneratorComponent extends BasePasswordGeneratorComponent {
|
||||
this.close();
|
||||
}
|
||||
|
||||
lengthChanged() {
|
||||
document.getElementById('length').focus();
|
||||
}
|
||||
|
||||
close() {
|
||||
this.location.back();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user