Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie
Hi all! We have been experiencing an issue on site where threads have been missing the latest postings. The platform host Vanilla are working on this issue. A workaround that has been used by some is to navigate back from 1 to 10+ pages to re-sync the thread and this will then show the latest posts. Thanks, Mike.
Hi there,
There is an issue with role permissions that is being worked on at the moment.
If you are having trouble with access or permissions on regional forums please post here to get access: https://www.boards.ie/discussion/2058365403/you-do-not-have-permission-for-that#latest

PhoneGap Build Help

  • 03-07-2014 9:09pm
    #1
    Registered Users, Registered Users 2 Posts: 437 ✭✭


    Hi there,

    I've built a small application using PhoneGap. It works perfectly in the browser, and also under the Ripple emulator. However, I cannot get the event listeners to work when I put the app on my Samsung Galaxy S2.

    listeners.js
    //Add event listeners
    document.addEventListener("deviceready", onDeviceReady, false);
    document.addEventListener("online", onOnline, false);
    document.addEventListener("offline", onOffline, false);
    
    
    //Execute this function when the device is ready.
    function onDeviceReady() {
    
        //Initial check on internet connection
        if (checkConnection() == false) {
            $(document).transition('to', "nointernetconnectionpage", "pop");
        }
    }
    
    function onOnline() {
        goBack();    
    }
    
    function onOffline() {
        $(document).transition('to', "nointernetconnectionpage", "slide");
    }
    
    function checkConnection() {
        var networkState = navigator.network.connection.type;
    
        if (networkState == "none") {
            return false;
        }
        return true;
    }
    

    Pretty simple stuff but the phone shows no reaction to disabling/enabling internet connections. I have a feeling it's something to do with the inclusion of cordoba.js/phonegap.js. I haven't got it as a library locally, but I'm including it as follows in index.html's <head> tag:
            <script type="text/javascript" charset="utf-8" src="cordova.js"></script>
    

    Also tried including it just before </body>, to no avail.

    Does anyone have any ideas here? I'm assuming PhoneGap Build automatically packages this library?

    Cheers,

    t1mm


Advertisement