source: Dev/trunk/src/client/dojox/widget/DialogSimple.js @ 536

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

Added Dojo 1.9.3 release.

File size: 465 bytes
Line 
1define([
2        "dojo/_base/declare", "dijit/Dialog", "dojox/layout/ContentPane"
3], function(declare, Dialog, ContentPane){
4
5        return declare("dojox.widget.DialogSimple", [ContentPane, Dialog._DialogBase], {
6                // summary:
7                //              A Simple Dialog Mixing the `dojox.layout.ContentPane` functionality over
8                //              top of a vanilla `dijit.Dialog`. See `dojox.widget.Dialog` for a more flexible
9                //              dialog option allowing animations and different styles/theme support.
10        });
11});
12
Note: See TracBrowser for help on using the repository browser.