source: Dev/trunk/src/client/dojox/mvc/tests/mobile/demo/MobileDemoContactModel.js

Last change on this file was 483, checked in by hendrikvanantwerpen, 11 years ago

Added Dojo 1.9.3 release.

File size: 496 bytes
Line 
1define(["dojox/mvc/getStateful"], function(getStateful){
2        // module:
3        //              dojox/mvc/tests/mobile/demo/MobileDemoContactModel
4        // summary:
5        //              The data model of contact info for this demo.
6
7        return getStateful({
8                Serial: "360324",
9                First: "John",
10                Last: "Doe",
11                Email: "jdoe@us.ibm.com",
12                ShipTo: {
13                        Street: "123 Valley Rd",
14                        City: "Katonah",
15                        State: "NY",
16                        Zip: "10536"
17                },
18                BillTo: {
19                        Street: "17 Skyline Dr",
20                        City: "Hawthorne",
21                        State: "NY",
22                        Zip: "10532"
23                }
24        });
25});
Note: See TracBrowser for help on using the repository browser.