sample skeleton application with dojo toolkit & arcgis js api v 4.30
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.
 
 
 
 
 
 

22 lines
705 B

define([
"dojo/_base/declare",
"./Container",
"./_ContentPaneMixin"
], function(declare, Container, ContentPaneMixin){
// module:
// dojox/mobile/ContentPane
return declare("dojox.mobile.ContentPane", [Container, ContentPaneMixin], {
// summary:
// A very simple content pane to embed an HTML fragment.
// description:
// This widget embeds an HTML fragment and runs the parser. It has
// the ability to load external content using dojo/_base/xhr. onLoad()
// is called when parsing is done and the content is
// ready. Compared with dijit/layout/ContentPane, this widget
// provides only basic functionality, but it is much lighter.
baseClass: "mblContentPane"
});
});