yesno-dialog
v0.2.1
Published
Javascript yes no dialog
Downloads
12,059
Maintainers
Readme
Javascript yes no dialog
Tiny customizable vanilla js confirm dialog
Install
npm install --save yesno-dialog
Usage
import yesno from "yesno-dialog";
showCatButton.addEventListener('click', async () => {
const yes = await yesno()
if (yes) // show the cat
})
Customization
import yesno from "yesno-dialog";
showCatButton.addEventListener('click', async () => {
const yes = await yesno({
labelYes: "Yep",
labelNo: "Nope",
bodyText: "Sure?"
})
if (yes) // show the cat
})
.jsyesnodialog {
--color: #e91e63;
}
Codesandbox examples
License
MIT © SidKH