You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
465 B
12 lines
465 B
define([ |
|
"dojo/_base/declare", "dijit/Dialog", "dojox/layout/ContentPane" |
|
], function(declare, Dialog, ContentPane){ |
|
|
|
return declare("dojox.widget.DialogSimple", [ContentPane, Dialog._DialogBase], { |
|
// summary: |
|
// A Simple Dialog Mixing the `dojox.layout.ContentPane` functionality over |
|
// top of a vanilla `dijit.Dialog`. See `dojox.widget.Dialog` for a more flexible |
|
// dialog option allowing animations and different styles/theme support. |
|
}); |
|
}); |
|
|
|
|