Skip to content

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

@Unkn0wnCreator

Description

@Unkn0wnCreator

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();
});

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions