window.js 365 B

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