Mr. Extreme created CB-1288:
-------------------------------

             Summary: position.timestamp.getTime() fails on iOS, ok on Android
                 Key: CB-1288
                 URL: https://issues.apache.org/jira/browse/CB-1288
             Project: Apache Cordova
          Issue Type: Bug
          Components: iOS
    Affects Versions: 2.0.0
            Reporter: Mr. Extreme
            Assignee: Shazron Abdullah


Take this piece of code:

{code:javascript}
    gpsWatchId = navigator.geolocation.watchPosition(
                    function( position ) // success
                    {
                        positionTimestamp = position.timestamp.getTime();
                    }
                    // don't forget the rest of the code
{code}

position.timestamp will be a Date object on Android, so even alert( 
position.timestamp ) works. On iOS 5, it causes the JS engine to fall over with 
some fatal error, rendering the whole app useless. You have to replace the code 
with your own "x = new Date; y = x.getTime();" code. If I saw correctly 
position.timestamp is non-existent on iOS.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

Reply via email to