Box.js

Box for modal / toast

Acest script nu ar trebui instalat direct. Aceasta este o bibliotecă pentru alte scripturi care este inclusă prin directiva meta a // @require https://update.greasyfork.org/scripts/447483/1071404/Boxjs.js

Autor
invobzvr
Versiune
0.5
Creat
06-07-2022
Actualizat
18-07-2022
Licență
GPL-3.0

Box.js

Description

Box for modal / toast

Example

await new Box({
    title: 'Demo Box',
    html: `<input class="box-input" value="Hello, Box!">`,
    actions: {
        OK: model => model.querySelector('input').value, // "Hello, Box!"
        Cancel: () => {}, // undefined
    },
});
const Toast = Box.mixin({
    title: 'Demo Toast',
    toast: true,
    time: 3e3,
});

new Toast({ text: 'Hello, Toast!' });