Rev | Line | |
---|
[483] | 1 | define([ |
---|
| 2 | "dojo/_base/declare", |
---|
| 3 | "dijit/_Container", |
---|
| 4 | "./Pane" |
---|
| 5 | ], function(declare, Container, Pane){ |
---|
| 6 | |
---|
| 7 | // module: |
---|
| 8 | // dojox/mobile/Container |
---|
| 9 | |
---|
| 10 | return declare("dojox.mobile.Container", [Pane, Container], { |
---|
| 11 | // summary: |
---|
| 12 | // A simple container-type widget. |
---|
| 13 | // description: |
---|
| 14 | // Container is a simple general-purpose container widget. |
---|
| 15 | // It is a widget, but can be regarded as a simple `<div>` element. |
---|
| 16 | |
---|
| 17 | // baseClass: String |
---|
| 18 | // The name of the CSS class of this widget. |
---|
| 19 | baseClass: "mblContainer" |
---|
| 20 | }); |
---|
| 21 | }); |
---|
Note: See
TracBrowser
for help on using the repository browser.