Details

    • Type: Bug Bug
    • Status: Resolved
    • Priority: Major Major
    • Resolution: Fixed
    • Affects Version/s: 1.2 Beta
    • Fix Version/s: BridgeIt 1.0
    • Component/s: Containers
    • Labels:
      None
    • Environment:
      ICEmobile-SX, first time installation

      Description

      The first time installation for ICEmobile-SX is slightly awkward since the user is taken to the ICEmobile-SX screen without a clear mechanism for returning to their browser.

      This is complicated by the fact that ICEmobile-SX does not know the URL of the application that prompted the installation.

        Activity

        Hide
        Ted Goddard added a comment -

        By making use of browser history, the first launch can be improved:

        <html>
        <head>
        <script>
            if (window.history.length == 1)  {
                window.close();
            } else {
                window.history.back();
            }
        </script>
        </head>
        <body>
        Thank you for using ICEmobile.
        </body>
        </html>
        
        Show
        Ted Goddard added a comment - By making use of browser history, the first launch can be improved: <html> <head> <script> if (window.history.length == 1) { window.close(); } else { window.history.back(); } </script> </head> <body> Thank you for using ICEmobile. </body> </html>
        Hide
        Ted Goddard added a comment -

        Also beneficial for the Android implementation.

        Show
        Ted Goddard added a comment - Also beneficial for the Android implementation.
        Hide
        Ted Goddard added a comment -

        First launch detection is implemented.

        Show
        Ted Goddard added a comment - First launch detection is implemented.

          People

          • Assignee:
            Steve Maryka
            Reporter:
            Ted Goddard
          • Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

            Dates

            • Created:
              Updated:
              Resolved: