You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
321 B
13 lines
321 B
define([ |
|
"dojo/_base/declare", |
|
"dojox/mobile/dh/UrlDataSource" |
|
], function(declare, UrlDataSource){ |
|
|
|
return declare("dojox.mobile.tests.doh.MyDataSource", UrlDataSource, { |
|
constructor: function(){ |
|
console.log("This is MyDataSource"); |
|
window._MyDataSourceFlag = true; |
|
this.inherited(arguments); |
|
} |
|
}); |
|
});
|
|
|