Ionic View: Inappbrowser not showing "done" button

I have an app that works in emulation and on devices.

It works by clicking on links to PDF documents and opening i new window. When using the org.apache.cordova.inappbrowser plugin it works prefectly with a nice “done” button that allows to come back to the app after reading the PDF document. I open the PDF with this function:

    $scope.openPdf = function(url) {
        window.open(url, '_blank', 'location=no')
    }

This behaviour is not working in the Ionic View app (Which itself is using the inAppBrowser plugin)

Is this a bug or a feature not implemented in Ionic View App ?

Try adding toolbar=yes like

window.open(url, '_blank', 'location=no,toolbar=yes')

This unfortunately did not work. Thanks for replying

1 Like