source: Dev/branches/rest-dojo-ui/client/dojox/widget/DialogSimple.js @ 256

Last change on this file since 256 was 256, checked in by hendrikvanantwerpen, 13 years ago

Reworked project structure based on REST interaction and Dojo library. As
soon as this is stable, the old jQueryUI branch can be removed (it's
kept for reference).

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