mirror of
https://github.com/beatriceo/polyglot.git
synced 2025-07-15 10:59:13 +00:00
12 lines
264 B
JavaScript
12 lines
264 B
JavaScript
|
|
const triggerModalEvent = () => {
|
|
const btn = document.getElementById("modalTrigger");
|
|
const modal = document.getElementById("myModal");
|
|
|
|
btn.addEventListener('click', function(event) {
|
|
$('#myModal').modal('show');
|
|
});
|
|
}
|
|
|
|
export { triggerModalEvent }
|