Weekly downloads
Readme
A modal window for the browser.
This module provides generic modal dialog functionality for blocking the UI and obtaining user input.
You need to 'require' this module in a commonJS style environment, and you need to be able to require the things with the .jade extension. I use browserify to do this.
modal([options])[.on('event')]
i
element before button text with the given class(es)Events will be fired on the modal according to which button is clicked. Defaults are confirm/cancel, but these can be overriden in your options.
modal(
{ title: 'Delete object'
, content: 'Are you sure you want to delete this object?'
, buttons:
[ { text: 'Don’t delete', event: 'cancel', keyCodes: [ 27 ] }
, { text: 'Delete', event: 'confirm', className: 'button-danger', iconClassName: 'icon-delete' }
]
})
.on('confirm', deleteItem)
FAQs
A modal window for the browser.
The npm package modal receives a total of 705 weekly downloads. As such, modal popularity was classified as not popular.
We found that modal demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket installs a Github app to automatically flag issues on every pull request and report the health of your dependencies. Find out what is inside your node modules and prevent malicious activity before you update the dependencies.