diff --git a/index.html b/index.html index 29bad00..617ef24 100644 --- a/index.html +++ b/index.html @@ -3,7 +3,7 @@ - Simple QR Generator + QRDAMAGE.NET @@ -15,7 +15,7 @@
-

QR Generator

+

QR DAMAGE

diff --git a/script.js b/script.js index 4e62117..5fbda41 100644 --- a/script.js +++ b/script.js @@ -296,7 +296,7 @@ document.addEventListener('DOMContentLoaded', () => { if (img && img.src) { const link = document.createElement('a'); link.href = img.src; - link.download = `qr-damage-${Date.now()}.png`; + link.download = `qrdamage-${Date.now()}.png`; document.body.appendChild(link); link.click(); link.remove(); @@ -310,7 +310,7 @@ document.addEventListener('DOMContentLoaded', () => { const url = URL.createObjectURL(blob); const link = document.createElement('a'); link.href = url; - link.download = `qr-damage-${Date.now()}.svg`; + link.download = `qrdamage-${Date.now()}.svg`; document.body.appendChild(link); link.click(); link.remove();