This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// CJ_Reed, 9th Apr 2011 | |
// --------------------- | |
// Storing date/time properties in Titanium Mobile | |
// (Rather than convert to text and back) | |
// create array and insert date/time value | |
var rightNowArray = []; | |
var rightNow = new Date(); | |
rightNowArray.push({time:rightNow}); |