Last change
on this file since 529 was
483,
checked in by hendrikvanantwerpen, 11 years ago
|
Added Dojo 1.9.3 release.
|
File size:
519 bytes
|
Line | |
---|
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.