Compare commits

..

2 Commits

Author SHA1 Message Date
Arsen Mirzaev Tatyano-Muradovich b1400479c4 rename 2025-07-06 12:56:17 +07:00
Arsen Mirzaev Tatyano-Muradovich 3f052f7343 fixed example js 2025-07-06 11:31:37 +07:00
2 changed files with 4 additions and 4 deletions

View File

@ -38,10 +38,10 @@ document.getElementById('pechatalka')?.querySelector('label[for=\'pechatalka_bac
```js ```js
import("/js/modules/pechatalka.mjs").then((module) => { import("/js/modules/pechatalka.mjs").then((module) => {
// Initializing the instance // Initializing the instance
new module.gallery( const instance = new module.pechatalka(
document.getElementById("wrap"), document.getElementById("pechatalka"),
document.getElementById("images"), document.getElementById("pechatalka")?.querySelector(".canvas"),
document.getElementById("gallery"), document.getElementById("pechatalka")?.querySelector(".result"),
true true
); );
}); });