source: Dev/trunk/src/client/dojox/mobile/ContentPane.js @ 532

Last change on this file since 532 was 483, checked in by hendrikvanantwerpen, 11 years ago

Added Dojo 1.9.3 release.

File size: 704 bytes
Line 
1define([
2        "dojo/_base/declare",
3        "./Container",
4        "./_ContentPaneMixin"
5], function(declare, Container, ContentPaneMixin){
6
7        // module:
8        //              dojox/mobile/ContentPane
9
10        return declare("dojox.mobile.ContentPane", [Container, ContentPaneMixin], {
11                // summary:
12                //              A very simple content pane to embed an HTML fragment.
13                // description:
14                //              This widget embeds an HTML fragment and runs the parser. It has
15                //              the ability to load external content using dojo/_base/xhr. onLoad()
16                //              is called when parsing is done and the content is
17                //              ready. Compared with dijit/layout/ContentPane, this widget
18                //              provides only basic fuctionality, but it is much lighter.
19
20                baseClass: "mblContentPane"
21        });
22});
Note: See TracBrowser for help on using the repository browser.