(eventname)
| 3352 | module.exports = function(strUrl, strWindowName, strWindowFeatures) { |
| 3353 | var iab = new InAppBrowser(); |
| 3354 | var cb = function(eventname) { |
| 3355 | iab._eventHandler(eventname); |
| 3356 | }; |
| 3357 | |
| 3358 | // Don't catch calls that write to existing frames (e.g. named iframes). |
| 3359 | if (window.frames && window.frames[strWindowName]) { |
no outgoing calls
no test coverage detected