소스 검색

Clean code in PasswordGenerator.vue component

pull/342/head
Guillaume Vincent 6 년 전
부모
커밋
ba37141e17
1개의 변경된 파일4개의 추가작업 그리고 3개의 파일을 삭제
  1. +4
    -3
      src/views/PasswordGenerator.vue

+ 4
- 3
src/views/PasswordGenerator.vue 파일 보기

@@ -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() {


불러오는 중...
취소
저장