You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@cordova.apache.org by GitBox <gi...@apache.org> on 2021/04/04 15:18:21 UTC

[GitHub] [cordova-plugin-inappbrowser] Mani-VD edited a comment on issue #446: target _blank sometimes open in system's web browser

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:
users@infra.apache.org



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