()
| 1634 | this.elements.parent.appendChild(this.elements.contextmenu); |
| 1635 | } |
| 1636 | closePopup() { |
| 1637 | if (this.currentPopup !== null) { |
| 1638 | try { |
| 1639 | this.currentPopup.remove(); |
| 1640 | } catch(e) {} |
| 1641 | this.currentPopup = null; |
| 1642 | } |
| 1643 | } |
| 1644 | //creates a full box popup. |
| 1645 | createPopup(popupTitle, buttons, hidden) { |
| 1646 | if (!hidden) this.closePopup(); |
no test coverage detected