Update page title and image file name

This commit is contained in:
Candifloss 2026-08-08 15:25:23 +05:30
parent d4ad7468f2
commit d92abc173b
2 changed files with 2 additions and 2 deletions

2
app.js
View File

@ -79,7 +79,7 @@ document.getElementById("downloadBtn").onclick = () => {
if (!bgImg) return; if (!bgImg) return;
const link = document.createElement("a"); const link = document.createElement("a");
link.download = "wallpaper.png"; link.download = "overlay_image.png";
link.href = canvas.toDataURL("image/png"); link.href = canvas.toDataURL("image/png");
link.click(); link.click();
}; };

View File

@ -2,7 +2,7 @@
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<title>Wallpaper Composer</title> <title>Image Overlay</title>
<link rel="stylesheet" href="style.css"> <link rel="stylesheet" href="style.css">
</head> </head>
<body> <body>