dojox
Version:
Dojo eXtensions, a rollup of many useful sub-projects and varying states of maturity – from very stable and robust, to alpha and experimental. See individual projects contain README files for details.
26 lines (24 loc) • 496 B
JavaScript
define(["dojox/mvc/getStateful"], function(getStateful){
// module:
// dojox/mvc/tests/mobile/demo/MobileDemoContactModel
// summary:
// The data model of contact info for this demo.
return getStateful({
Serial: "360324",
First: "John",
Last: "Doe",
Email: "jdoe@us.ibm.com",
ShipTo: {
Street: "123 Valley Rd",
City: "Katonah",
State: "NY",
Zip: "10536"
},
BillTo: {
Street: "17 Skyline Dr",
City: "Hawthorne",
State: "NY",
Zip: "10532"
}
});
});