[ 
https://issues.apache.org/jira/browse/CB-11453?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Shazron Abdullah updated CB-11453:
----------------------------------
    Environment: iOS
    Component/s: Plugin InAppBrowser

> InAppBrowser executeScript() does not return when used concurrently on iphone
> -----------------------------------------------------------------------------
>
>                 Key: CB-11453
>                 URL: https://issues.apache.org/jira/browse/CB-11453
>             Project: Apache Cordova
>          Issue Type: Bug
>          Components: Plugin InAppBrowser
>         Environment: iOS
>            Reporter: Aaron Rosen
>
> While using the cordova-plugin-inappbroswer version 1.4.0 I noticed that if I 
> make concurrent requests with win.executeScript() that some times a callback 
> never get called.  I've been able to reproduce this problem on iOS and not 
> Android though.   
> For example:
> {code}
> var win = window.open( "https://google.com";, "_blank");
> win.addEventListener( "loadstop", function() {
> var loop = setInterval(function() {
>   win.executeScript({
>        code: "localStorage.getItem( 'foo' )"
>     },function( values ) {
>        console.log("Only seen once...");
>        console.log(values);
>     }
> });
>                              
> var loop = setInterval(function() {
>   win.executeScript({
>        code: "localStorage.getItem( 'bar' )"
>     },function( values ) {
>        console.log("Only seen once...");
>        console.log(values);
>     }
> });
>                               
> })
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org

Reply via email to