Cordova InAppBrowser - How to disable URL and Navigation Bar?

前端 未结 7 1193
眼角桃花
眼角桃花 2020-11-30 23:23

I am currently building a News Aggregator App and I am using InAppBrowser for people to read the articles. Now, my questions is: Can I remove the URL and Navigation Bar? Als

7条回答
  •  醉梦人生
    2020-12-01 00:17

    Use:

    var options = {
      "location": "no", 
      "toolbar": "no"
    };
    $cordovaInAppBrowser.open(url, target, options);
    

提交回复
热议问题