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