This commit is contained in:
Jack 2020-12-21 18:56:43 +00:00
commit 35a23f09b3
2 changed files with 8 additions and 1 deletions

5
.gitignore vendored
View file

@ -83,3 +83,8 @@ functions/serviceAccountKey_live_copy.json
#generated files
dist/
#cloudflare y
.cloudflareKey.txt
.cloudflareKey_copy.txt
purgeCfCache.sh

View file

@ -4082,7 +4082,7 @@ $("#customMode2PopupWrapper").click((e) => {
}
});
$("#customMode2Popup input").keypress(() => {
$("#customMode2Popup input").keypress((e) => {
if (e.keyCode == 13) {
applyMode2Popup();
}
@ -4649,6 +4649,8 @@ function handleBackspace(event) {
if (addspace) {
currentInput += " ";
}
} else if(event.metaKey){
currentInput = "";
} else {
currentInput = currentInput.substring(0, currentInput.length - 1);
}