PhoneGap 1.4.0rc1 is commited

PhoneGap 1.4.0rc1 is commited

Just pushed my updates to github, and they are making their way into Apache git.
You can get the latest code here:

https://github.com/purplecabbage/callback-windows-phone

Changes include fixes for XHR to local files, + fixes to allow jQM single/multipage apps function correctly.

Here’s a short video demonstrating the updated Compass API.

## Update
Now 1.4.0 is live! Get it from PhoneGap.com

## SourceCode for the above demo is posted here

https://github.com/purplecabbage/CompassDemo

  1. Terramoto
    Terramoto01-30-2012

    Hey, i was wondering if its possible to get wifi signal strenght with phonegap.

  2. AlexY
    AlexY01-31-2012

    Whatever I do I cannot make XmlHttpRequest to work on the PhoneGap in WP7.

    Just try this:

    function appReady(){
    var ajax = new XMLHttpRequest();
    ajax.open(“GET”,”http://search.twitter.com/search.json?q=bacon”,true);
    ajax.send();
    ajax.onreadystatechange=function(){
    if(ajax.readyState==4 && (ajax.status==200)){
    document.getElementById(‘main’).innerHTML = ajax.responseText;
    }
    }
    }

    No Twitter Messages