
Security News
The Changelog Podcast: Practical Steps to Stay Safe on npm
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.
@borngroup/born-modal
Advanced tools
BORN Module to handle Modals. Provides callbacks and static methods to open, update, and close the modals
Very simple module to create modals on the fly. Features callbacks and open/update/close methods.
content: [HTMLElement || String] [REQUIRED] HTMLElement or String which contains all the content for your Modal.
modalID: [String] Default: random string. Unique ID for the Modal. If a Modal with the same ID is present, said Modal will open instead.
container: [HTMLElement || String] Default: document.body. Specify a container for the Modal. Can be an HTMLElement or a selector string.
keepAlive: [Boolean] Default: true. If set to false, the Modal will be removed from the DOM after closing it.
openImmediately: [Boolean] Default: true. Open the Modal immediately after creating it.
beforeOpenCallback: [function] Runs every time before the Modal is opened or updated. If false is returned, Modal won't open nor update.
afterOpenCallback: [function] Runs every time after the Modal opens.
afterCloseCallback: [function] Runs every time after the Modal is closed.
afterCreateCallback: [function] Runs once after the Modal is initially created. If keepAlive is true it will run every time the Modal opens.
You can run these on your new Modal instance:
open: [or yourModalElement.modal.open();]
close: [or yourModalElement.modal.close();]
parameters: [None]
update: [or yourModalElement.modal.update();]
parameters:
'content': [String || HTMLElement] HTML string or HTMLElement to update the Modal with.
'newID': [String] Changes the updated Modal's ID to this value.
var myModal = new Modal({
	modalID:		        'custom-unique-id',
	modalClass: 	        'homepage-modal',
	content: 	            '<p>Content for the Modal here</p>',
	beforeOpenCallback: 	function(modal) {
	                            if (someCondition) {
	                                //Do something.
	                                return true;
	                            }
	                            return false;
	                        }
});
FAQs
BORN Module to handle Modals. Provides callbacks and static methods to open, update, and close the modals
The npm package @borngroup/born-modal receives a total of 134 weekly downloads. As such, @borngroup/born-modal popularity was classified as not popular.
We found that @borngroup/born-modal demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.

Security News
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.

Security News
Ruby's creator Matz assumes control of RubyGems and Bundler repositories while former maintainers agree to step back and transfer all rights to end the dispute.