TwashRocketLoans commented on issue #279: executeScript does not fire - issue 
ionic 3
URL: 
https://github.com/apache/cordova-plugin-inappbrowser/issues/279#issuecomment-426881735
 
 
   pretty sure his browser variable comes from the Ionic docs:
   
   ```
   import { InAppBrowser } from '@ionic-native/in-app-browser';
   
   constructor(private iab: InAppBrowser) { }
   
   
   ...
   
   
   const browser = this.iab.create('https://ionicframework.com/');
   
   browser.executeScript(...);
   
   browser.insertCSS(...);
   browser.on('loadstop').subscribe(event => {
      browser.insertCSS({ code: "body{color: red;" });
   });
   
   browser.close();
   ```

----------------------------------------------------------------
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