()
| 222 | |
| 223 | // update the UI |
| 224 | var contentWindowAddRequest = function() { |
| 225 | try { |
| 226 | uiWindow.contentWindow.addRequest(requestObject); |
| 227 | } catch(e) { |
| 228 | console.log('failed to add request, trying again in a moment...'); |
| 229 | setTimeout(contentWindowAddRequest, 10); |
| 230 | } |
| 231 | } |
| 232 | contentWindowAddRequest(); |
| 233 | } |
| 234 |
no test coverage detected