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.
21 lines
519 B
21 lines
519 B
define([ |
|
"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" |
|
}); |
|
});
|
|
|