()
| 12274 | modalsStack.push(box); |
| 12275 | } |
| 12276 | function endModal() { |
| 12277 | var box = modalsStack.pop(); |
| 12278 | if (box) { |
| 12279 | scheduler2.eventRemove(box, "keydown", trapFocus); |
| 12280 | } |
| 12281 | afterPopup(); |
| 12282 | } |
| 12283 | function isTopModal(box) { |
| 12284 | return box == modalsStack[modalsStack.length - 1]; |
| 12285 | } |
nothing calls this directly
no test coverage detected