[
https://issues.apache.org/jira/browse/CB-12407?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15964300#comment-15964300
]
Othon Crelier commented on CB-12407:
------------------------------------
Yes it does, [~Nikita Matrosov]. The _blank events work fine until the moment
when _system gets open.
Turns out that the workaround I mentioned in the previous comment was so slow
for old Android devices that I had to drop InAppBrowser and use <iframe>
together with window.postMessage to sync behavior. Reference:
https://developer.mozilla.org/en-US/docs/Web/API/Window/postMessage
> 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: Plugin InAppBrowser
> Affects Versions: 6.4.0
> Environment: android (never tried other plaforms)
> Reporter: Othon Crelier
>
> 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.3.15#6346)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]