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.
23 lines (19 loc) • 705 B
JavaScript
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"
});
});