Line | |
---|
1 | define(["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.