UNPKG

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.

14 lines (12 loc) 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); } }); });