Procházet zdrojové kódy

Clean code in PasswordGenerator.vue component

pull/342/head
Guillaume Vincent před 6 roky
rodič
revize
ba37141e17
1 změnil soubory, kde provedl 4 přidání a 3 odebrání
  1. +4
    -3
      src/views/PasswordGenerator.vue

+ 4
- 3
src/views/PasswordGenerator.vue Zobrazit soubor

@@ -172,12 +172,13 @@ export default {
this.passwordGenerated = "";
this.$refs.masterPassword.hidePassword();
},
cleanFormInSeconds(seconds = 15) {
cleanFormIn30Seconds() {
const thirtySecondsInMillisecond = 30 * 1000;
this.cleanTimeout = setTimeout(() => {
this.masterPassword = "";
this.passwordGenerated = "";
this.$refs.masterPassword.hidePassword();
}, 1000 * seconds);
}, thirtySecondsInMillisecond);
},
generatePassword() {
const site = this.password.site;
@@ -209,7 +210,7 @@ export default {
passwordProfile
).then(passwordGenerated => {
this.passwordGenerated = passwordGenerated;
this.cleanFormInSeconds(30);
this.cleanFormIn30Seconds();
});
},
focusBestInputField() {


Načítá se…
Zrušit
Uložit