DialogSimple.js 850 B

123456789101112131415161718192021
  1. /*
  2. Copyright (c) 2004-2012, The Dojo Foundation All Rights Reserved.
  3. Available via Academic Free License >= 2.1 OR the modified BSD license.
  4. see: http://dojotoolkit.org/license for details
  5. */
  6. if(!dojo._hasResource["dojox.widget.DialogSimple"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code.
  7. dojo._hasResource["dojox.widget.DialogSimple"] = true;
  8. dojo.provide("dojox.widget.DialogSimple");
  9. dojo.require('dijit.Dialog');
  10. dojo.require("dojox.layout.ContentPane");
  11. dojo.declare("dojox.widget.DialogSimple", [dojox.layout.ContentPane, dijit._DialogBase], {
  12. // summary: A Simple Dialog Mixing the `dojox.layout.ContentPane` functionality over
  13. // top of a vanilla `dijit.Dialog`. See `dojox.widget.Dialog` for a more flexible
  14. // dialog option allowing animations and different styles/theme support.
  15. });
  16. }