added web pages
This commit is contained in:
parent
e570167a5e
commit
c96c340a43
19 changed files with 877 additions and 238 deletions
15
static/js/seed.js
Normal file
15
static/js/seed.js
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
$(() => {
|
||||
$("#reveal-button").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");
|
||||
}
|
||||
})
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue