Waqas Khan
Waqas Khan

Reputation: 31

How can i open the link in browser outside the app in ionic framework without using inappbrowser plugin?

cordova Barcode Scanner plugin in ionic framework for scanning Qrcodes.i want to open the Qrcode in android web browser without using inappbrowser plugin that is link is open outside my app i mean its not a part of my app.so can it possible?

Thank you

Upvotes: 2

Views: 4656

Answers (1)

Sarim Shekhani
Sarim Shekhani

Reputation: 128

You have to add the following code in the $ionicPlatform.ready function.

document.addEventListener("resume", onResume, false);

This will register a new event and when you open again the app resume event will be fired.

Happy Coding :)

Sarim Ghani

Upvotes: 1

Related Questions