ten80 edited a comment on issue #426: Ionic - Not able to click on buttons or 
anything after closing InAppBrowser
URL: 
https://github.com/apache/cordova-plugin-inappbrowser/issues/426#issuecomment-463698701
 
 
   i'm using the newest version (3.0.0) of the plugin on iOS 12.1.
   i use 8.1.2 ([email protected]) and this are my options:
   
           const browser = this.iab.create('https://www.google.com','_blank',{
               location:'no',
               mediaPlaybackRequiresUserAction: 'yes',
               clearcache: 'yes',
               clearsessioncache: 'yes',
               cleardata: 'yes',
               closebuttoncolor: '#FFFFFF',
               closebuttoncaption: 'Close',
               disallowoverscroll: 'yes',
               hidenavigationbuttons: 'no',
               navigationbuttoncolor: '#FFFFFF',
               toolbar: 'yes',
               toolbarcolor: '#E10000',
               toolbarposition: 'top'
           });
   
           browser.on('loadstop').subscribe(event => {
               browser.executeScript({code: '(function() { 
localStorage.clear(); return true; })()'});
           });
   
   i also tried to make a alert box before opening, but after closing i'm also 
not able to click "okey" on the alert. example: alert("test");

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to