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