portable-secret icon indicating copy to clipboard operation
portable-secret copied to clipboard

[Feature] Press Enter/Return in the Textbox to Decrypt

Open Unkn0wnCreator opened this issue 3 years ago • 2 comments

Hi,

You could add this to the end of the secret-template file, within the script tag, to allow that.

document.querySelector("#password").addEventListener("keyup", event => { if(event.key !== "Enter") return; decrypt() event.preventDefault(); });

Unkn0wnCreator avatar Dec 22 '22 00:12 Unkn0wnCreator

Thank you very much. I'll get to it eventually.

mprimi avatar Dec 22 '22 17:12 mprimi

This PR addresses: https://github.com/mprimi/portable-secret/pull/31

gamedevsam avatar Jan 06 '23 23:01 gamedevsam