Hi!
I'm deploying the social login and the page that user needs to login to Facebook always open at inAppBrowser. Is it possible to open in Native Facebook App or default user browser (like Chrome)?
I tried to change in Facebook_Helper.js this line but without success:
code
ref = window.open(url, 'blank', 'location=yes');
ref = window.open(url, 'system', 'location=yes');
ref = window.open(url, '_system');
/code
Thanks!