Reputation: 31
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
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