Browse Source

Modal now closes when clicked outside of the box.

Lee Morgan 5 years ago
parent
commit
d00fa5c598
1 changed files with 2 additions and 0 deletions
  1. 2 0
      views/dashboardPage/js/dashboard.js

+ 2 - 0
views/dashboardPage/js/dashboard.js

@@ -192,6 +192,8 @@ controller = {
     openModal: function(str, data){
         let modal = document.getElementById("modal");
         modal.style.display = "flex";
+        modal.onclick = ()=>{this.closeModal()};
+        document.querySelector(".modalBox").onclick = ()=>{event.stopPropagation()};
         document.getElementById("modalClose").addEventListener("click", this.closeModal);
         let content = {};