window.js.uncompressed.js 405 B

123456789101112131415161718
  1. define("dijit/_base/window", [
  2. "dojo/window", // windowUtils.get
  3. "../main" // export symbol to dijit
  4. ], function(windowUtils, dijit){
  5. // module:
  6. // dijit/_base/window
  7. /*=====
  8. return {
  9. // summary:
  10. // Back compatibility module, new code should use windowUtils directly instead of using this module.
  11. };
  12. =====*/
  13. dijit.getDocumentWindow = function(doc){
  14. return windowUtils.get(doc);
  15. };
  16. });