Javascript yes no dialog
npm install yesno-dialogTiny customizable vanilla js confirm dialog
bash
npm install --save yesno-dialog
`Usage
`javascript
import yesno from "yesno-dialog";showCatButton.addEventListener('click', async () => {
const yes = await yesno()
if (yes) // show the cat
})
`Customization
`javascript
import yesno from "yesno-dialog";showCatButton.addEventListener('click', async () => {
const yes = await yesno({
labelYes: "Yep",
labelNo: "Nope",
bodyText: "Sure?"
})
if (yes) // show the cat
})
``css
.jsyesnodialog {
--color: #e91e63;
}
``