diff --git a/src/main/resources/templates/board.html b/src/main/resources/templates/board.html index c5c4247..8fb5124 100644 --- a/src/main/resources/templates/board.html +++ b/src/main/resources/templates/board.html @@ -44,7 +44,19 @@ + + + diff --git a/src/main/resources/templates/production_detail.html b/src/main/resources/templates/production_detail.html index bc6d3fb..cca8dcc 100644 --- a/src/main/resources/templates/production_detail.html +++ b/src/main/resources/templates/production_detail.html @@ -77,15 +77,16 @@
-
'; + document.getElementById('videoModal').style.display = 'flex'; + } + function closeVideoModal(){ + document.getElementById('vmFrame').innerHTML = ''; + document.getElementById('videoModal').style.display = 'none'; + } + document.addEventListener('keydown', e => { if(e.key === 'Escape') closeVideoModal(); }); + + + +