Open a local pdf file with cordova

dinodsaurus

Im using cordova 3.3.0 and i would like to open a local pdf file and then close it on user demand.

ref = window.open(encodeURI(path), '_blank', 'location=yes');
ref.addEventListener('exit', function() {
    ref.removeEventListener('exit', function(){});
    ref.close();

} );

This opens a file in inapp browser but i cannot get back to the actual app when I open some pdf file. How to add some close button or something ?

Im trying to get this working on ios.

Temple

Long time since you asked this but just had exactly the same issue. I had to install the inAppBrowser plugin on my project and the Done button appeared. Without the plugin installed, the pdf opened but the Done button was not shown.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related