summaryrefslogtreecommitdiff
path: root/lib/dijit/_base/window.js.uncompressed.js
blob: 0e065c9663e0625ebc322ee2aa4708d6869d00d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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);
	};
});