// Modal elements should be added to the body varelModal = document.querySelector("#modal-demo"); if(elModal === null) { elModal = document.createElement("div"); elModal.id = "modal-demo"; document.body.appendChild(elModal); }
// Create the modal letmodal = Components.Modal({ el:el, id:"modalDemo", title:"Modal Demo", type:Components.ModalTypes.Small, body:"This is the body of the modal." });
Modal