polardbxengine/storage/ndb/mcc/frontend/dojo/dojox/mobile/ContentPane.js.uncompressed.js

23 lines
732 B
JavaScript

define("dojox/mobile/ContentPane", [
"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 fuctionality, but it is much lighter.
baseClass: "mblContentPane"
});
});