mirror of
https://github.com/beatriceo/polyglot.git
synced 2025-07-01 22:49:12 +00:00
9 lines
208 B
JavaScript
9 lines
208 B
JavaScript
import "bootstrap";
|
|
|
|
const btn = document.getElementById("modalTrigger");
|
|
const modal = document.getElementById("myModal");
|
|
|
|
btn.addEventListener('click', function(event) {
|
|
$('#myModal').modal('show');
|
|
});
|