You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by GitBox <gi...@apache.org> on 2019/03/17 04:08:28 UTC

[GitHub] [cordova-plugin-inappbrowser] anayarojo opened a new issue #449: How open URL inside a tab in ionic 4

anayarojo opened a new issue #449: How open URL inside a tab in ionic 4
URL: https://github.com/apache/cordova-plugin-inappbrowser/issues/449
 
 
   
   I have the next code:
   
   ```typescript
   import { Injectable } from '@angular/core';
   import { Registry } from '../models/registry.model';
   import { Storage } from '@ionic/storage';
   import { NavController } from '@ionic/angular';
   
   import { InAppBrowser, InAppBrowserOptions } from '@ionic-native/in-app-browser/ngx';
   
   @Injectable({
     providedIn: 'root'
   })
   
   export class BrowserService {
   
     // More code...
   
     open() {
        const options: InAppBrowserOptions = {
            zoom: 'no',
            location: 'yes',
            toolbar: 'no'
        };
        this.inAppBrowser.create(registry.text, '_self', options);
     }
   
     // More code...
   
   }
   
   ```
   
   With the previous code I get next result:
   
   ![image](https://user-images.githubusercontent.com/6903495/54484983-2a7c5e80-482e-11e9-8d1a-30880af1c219.png)
   
   But I need include the button tabs bar
   
   ![image](https://user-images.githubusercontent.com/6903495/54484991-6fa09080-482e-11e9-99b9-00efe8c44b9a.png)
   
   Is it possible include the **InAppBrowser** response in a angular route?
   
   Thanks

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


With regards,
Apache Git Services

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