()
| 8836 | return alertPopup(text); |
| 8837 | }; |
| 8838 | var confirmBox = function() { |
| 8839 | var text = box_params.apply(this, arguments); |
| 8840 | text.type = text.type || "alert"; |
| 8841 | return confirmPopup(text); |
| 8842 | }; |
| 8843 | var modalBox = function() { |
| 8844 | var text = box_params.apply(this, arguments); |
| 8845 | text.type = text.type || "alert"; |
nothing calls this directly
no test coverage detected