()
| 8845 | return confirmPopup(text); |
| 8846 | }; |
| 8847 | var modalBox = function() { |
| 8848 | var text = box_params.apply(this, arguments); |
| 8849 | text.type = text.type || "alert"; |
| 8850 | return boxPopup(text); |
| 8851 | }; |
| 8852 | modalBox.hide = function(node) { |
| 8853 | while (node && node.getAttribute && !node.getAttribute(boxAttribute)) |
| 8854 | node = node.parentNode; |
nothing calls this directly
no test coverage detected