(hidden)
| 5117 | } |
| 5118 | } |
| 5119 | createSubPopup(hidden) { |
| 5120 | const popup = this.createElement("div"); |
| 5121 | popup.classList.add("ejs_popup_container"); |
| 5122 | popup.classList.add("ejs_popup_container_box"); |
| 5123 | const popupMsg = this.createElement("div"); |
| 5124 | popupMsg.innerText = ""; |
| 5125 | if (hidden) popup.setAttribute("hidden", ""); |
| 5126 | popup.appendChild(popupMsg); |
| 5127 | return [popup, popupMsg]; |
| 5128 | } |
| 5129 | createNetplayMenu() { |
| 5130 | const body = this.createPopup("Netplay", { |
| 5131 | "Create a Room": () => { |
no test coverage detected