lightning-pub/static/js/seed.js
polarDefender bbcff16dd6 updated ui
2024-05-29 08:20:04 -07:00

19 lines
476 B
JavaScript

$(() => {
$("#reveal-button").click(() => {
$("#seed-box-container").removeClass("blur-filter");
});
$("#seed-box-container").click(() => {
$("#seed-box-container").removeClass("blur-filter");
});
$('#copied').click(() => {
const checked = $("#copied").prop('checked');
const nextButton = $("#next-button");
if (checked) {
nextButton.removeClass("hidden-button");
} else {
nextButton.addClass("hidden-button");
}
})
});