You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@cordova.apache.org by "Joe Bowser (JIRA)" <ji...@apache.org> on 2017/10/05 17:56:01 UTC

[jira] [Commented] (CB-12407) InAppBrowser object reference AND events lost

    [ https://issues.apache.org/jira/browse/CB-12407?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16193319#comment-16193319 ] 

Joe Bowser commented on CB-12407:
---------------------------------

We currently only support one InAppBrowser instance at a time.  Unlike the old accelerometer, which was designed to handle multiple accelerometers to watch, there is no code to handle multiple InAppBrowser instances loaded.

> InAppBrowser object reference AND events lost
> ---------------------------------------------
>
>                 Key: CB-12407
>                 URL: https://issues.apache.org/jira/browse/CB-12407
>             Project: Apache Cordova
>          Issue Type: Bug
>          Components: cordova-plugin-inappbrowser
>    Affects Versions: 6.4.0
>         Environment: android (never tried other plaforms)
>            Reporter: Othon Crelier
>            Priority: Minor
>
> If you have an instance of InAppBrowser, say, with target=_blank, and then you create a new instance with target=_system, your original InAppBrowser reference gets lost, and the events assigned to it stop working.
> {code:javascript}
>   let blankBrowser = new InAppBrowser('https://someurl.com', '_blank', 'location=no,zoom=no,hidden=no');
>   blankBrowser.on('loadstart').subscribe(
>     event => {
>       //some behavior
>     }
>   );
>   let systemBrowser = new InAppBrowser('https://anotherurl.com', '_system', 'location=no,zoom=no,hidden=no');
>   //bang! the events assigned to blankBrowser go away, and I cannot do anything with the reference
> {code}



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

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