1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-07-17 15:07:33 +02:00
ttrss/lib/dijit/_base/window.js.uncompressed.js

19 lines
405 B
JavaScript
Raw Normal View History

2013-03-18 07:26:24 +01:00
define("dijit/_base/window", [
"dojo/window", // windowUtils.get
"../main" // export symbol to dijit
], function(windowUtils, dijit){
// module:
// dijit/_base/window
/*=====
return {
// summary:
// Back compatibility module, new code should use windowUtils directly instead of using this module.
};
=====*/
dijit.getDocumentWindow = function(doc){
return windowUtils.get(doc);
};
});