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