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

22 lines
545 B
JavaScript

define("dojox/mobile/Container", [
"dojo/_base/declare",
"dijit/_Container",
"./Pane"
], function(declare, Container, Pane){
// module:
// dojox/mobile/Container
return declare("dojox.mobile.Container", [Pane, Container], {
// summary:
// A simple container-type widget.
// description:
// Container is a simple general-purpose container widget.
// It is a widget, but can be regarded as a simple `<div>` element.
// baseClass: String
// The name of the CSS class of this widget.
baseClass: "mblContainer"
});
});