Files
polyglot/app/javascript/packs/modal.js
Beatrice Olivera 0b377cbe20 fixed calling modal
2018-08-31 11:29:24 +01:00

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');
});