main.js 707 B

1234567891011121314151617181920
  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. // AMD module id = dijit
  7. //
  8. // This is a package main module for the dijit package. The dijit package is somewhat unusual
  9. // in that is it currently constructed to just provide an empty object.
  10. //
  11. // for now, we publish dijit into the global namespace because so many tests and apps expect it.
  12. define(["dojo"], function(dojo) {
  13. // the current dojo bootstrap defines dijit; this may change and this module provides a little
  14. // future-proof with the disjunction.
  15. dijit= dojo._dijit || {};
  16. return dijit;
  17. });