myg-modal
v0.13.8
Published
Myg modal component.
Downloads
14
Readme
Modals
Usage
Stylesheets
@import "myg-modal/modal"
Javascript
import MygModal from 'myg-modal';
document.addEventListener( 'ready', () => {
const mygModals = MygModal.initAll( document.querySelectorAll('.myg-modal'), {} );
})
or
import * as myg from 'myg/src/myg';
const MygModal = myg.MygModal;
document.addEventListener( 'ready', () => {
const mygModals = MygModal.initAll( document.querySelectorAll('.myg-modal'), {} );
})