image-modal.js 588 B

12345678910111213141516171819202122
  1. (function() {
  2. var dialog = document.getElementById('dialog-image-modal');
  3. dialog.returnValue = 'dialog-image-modal';
  4. function openCheck(dialog) {
  5. if(dialog.open) {
  6. dialog.className = "";
  7. } else {
  8. dialog.className = "";
  9. }
  10. }
  11. const tiles = document.getElementsByClassName('tile');
  12. for (var i = 0; i < tiles.length; i++) {
  13. // Update button opens a modal dialog
  14. tiles.item(i).addEventListener('click', function() {
  15. dialog.showModal();
  16. openCheck(dialog);
  17. });
  18. }
  19. })();