(cm, text)
| 13123 | return regexp; |
| 13124 | } |
| 13125 | function showConfirm(cm, text) { |
| 13126 | if (cm.openNotification) { |
| 13127 | cm.openNotification('<span style="color: red">' + text + '</span>', |
| 13128 | {bottom: true, duration: 5000}); |
| 13129 | } else { |
| 13130 | alert(text); |
| 13131 | } |
| 13132 | } |
| 13133 | function makePrompt(prefix, desc) { |
| 13134 | var raw = '<span style="font-family: monospace; white-space: pre">' + |
| 13135 | (prefix || "") + '<input type="text"></span>'; |
no outgoing calls
no test coverage detected