Mani-VD edited a comment on issue #446:
URL:
https://github.com/apache/cordova-plugin-inappbrowser/issues/446#issuecomment-813050435
inappbrowser require some time for its full functionality.. just give some
delay to the inappbrowser create function like below
import {InAppBrowser,InAppBrowserOptions} from
'@ionic-native/inappbrowser/ngx' //Check for exact names..
var url='your url';
var target='_blank';
var options:InAppBrowserOptions{zoom:'yes'};
setTimeout(()=>{
this.inappbrowser.create(url,target,options);
},1500);
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]