Navigation

    Monaca & Onsen UI
    • Login
    • Search
    • Tags
    • Users
    • Blog
    • Playground
    1. Home
    2. DaveRuckley
    D
    • Flag Profile
    • Profile
    • Following
    • Followers
    • Blocks
    • Topics
    • Posts
    • Best
    • Groups
    Save
    Saving

    DaveRuckley

    @DaveRuckley

    0
    Reputation
    3
    Posts
    63
    Profile views
    0
    Followers
    0
    Following
    Joined Last Online

    DaveRuckley Follow

    Posts made by DaveRuckley

    • RE: External URL's 'replacing' app

      @emccorson said in External URL's 'replacing' app:

      cordova.InAppBrowser.open

      Yup. The only time the links work is if they’re window.open and have _self instead of _blank.

      posted in Developer Corner
      D
      DaveRuckley
    • RE: External URL's 'replacing' app

      @emccorson thanks for the reply. Unfortunately _blank and _system both have the same result.

      window.open(“http://www.bbc.co.uk”, “_blank”, “location=yes”); simply replaces the app in ios with no options to close. I’ve even tried adding the tooldbar argument like this: window.open(“http://www.bbc.co.uk”, “_blank”, “location=yes " toolbar=yes” toolbarposition=top" ); but again it just opens in the app itself with no way to close.

      posted in Developer Corner
      D
      DaveRuckley
    • External URL's 'replacing' app

      I have an HTML5 resource I have uploaded which builds successfully apart from one thing, any links to external sites open within the app without any controls to close them and return to the app itself. It’s like the app is being replaced by the external website.

      I’ve got the inappbrowser selected in “cordova plugins” in the project section and have added the following to config.xml with no change in the behaviour:

      <allow-intent href=“http:///” />
      <allow-intent href=“https:///” />
      <allow-intent href=“tel:" />
      <allow-intent href="sms:
      ” />
      <allow-intent href=“mailto:" />
      <allow-intent href="geo:
      ” />

      Does anyone know where I might be going wrong?

      posted in Developer Corner
      D
      DaveRuckley