(title, text, onOkClick, okLabel=gettext('OK'))
| 163 | } |
| 164 | |
| 165 | alert(title, text, onOkClick, okLabel=gettext('OK')) { |
| 166 | /* Use this if you want to use pgAdmin global notifier. |
| 167 | Or else, if you want to use modal inside iframe only then use ModalProvider eg- query tool */ |
| 168 | this.modal.alert(title, text, onOkClick, okLabel); |
| 169 | } |
| 170 | |
| 171 | // Plain-text modal alert. Use whenever `text` may contain untrusted |
| 172 | // content (driver / API error messages, server-supplied strings, etc.). |
no test coverage detected