[TIMOB-3714] Confirm TIMOB-2955
| GitHub Issue | n/a |
|---|---|
| Type | Sub-task |
| Priority | High |
| Status | Closed |
| Resolution | Fixed |
| Resolution Date | 2011-04-27T02:08:08.000+0000 |
| Affected Version/s | n/a |
| Fix Version/s | Release 1.7.0, Sprint 2011-17 |
| Components | Android |
| Labels | n/a |
| Reporter | Don Thorp |
| Assignee | Bill Dawson |
| Created | 2011-04-26T09:34:37.000+0000 |
| Updated | 2011-04-27T02:08:08.000+0000 |
Titanium Mobile 1.7.0 6b80fd93 HTC Desire, Android 2.2 * There is already a drillbit test which is passing. * I created a separate app to alert() the stringified JSON and confirm with the eye that the booleans are true booleans and not strings.
Titanium.UI.setBackgroundColor('#000'); var win = Titanium.UI.createWindow({ title:'Test', backgroundColor:'#000', exitOnClose: true }); var a = [ {x: true, y: {z: false}}, {x: false, y: {z: true}} ]; alert(JSON.stringify(a)); win.open();