mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 22:35:55 +00:00
add dijit/dojo stuff; initial ui mockup
This commit is contained in:
49
lib/dojo/_base/window.js
Normal file
49
lib/dojo/_base/window.js
Normal file
@@ -0,0 +1,49 @@
|
||||
/*
|
||||
Copyright (c) 2004-2010, The Dojo Foundation All Rights Reserved.
|
||||
Available via Academic Free License >= 2.1 OR the modified BSD license.
|
||||
see: http://dojotoolkit.org/license for details
|
||||
*/
|
||||
|
||||
|
||||
if(!dojo._hasResource["dojo._base.window"]){
|
||||
dojo._hasResource["dojo._base.window"]=true;
|
||||
dojo.provide("dojo._base.window");
|
||||
dojo.doc=window["document"]||null;
|
||||
dojo.body=function(){
|
||||
return dojo.doc.body||dojo.doc.getElementsByTagName("body")[0];
|
||||
};
|
||||
dojo.setContext=function(_1,_2){
|
||||
dojo.global=_1;
|
||||
dojo.doc=_2;
|
||||
};
|
||||
dojo.withGlobal=function(_3,_4,_5,_6){
|
||||
var _7=dojo.global;
|
||||
try{
|
||||
dojo.global=_3;
|
||||
return dojo.withDoc.call(null,_3.document,_4,_5,_6);
|
||||
}
|
||||
finally{
|
||||
dojo.global=_7;
|
||||
}
|
||||
};
|
||||
dojo.withDoc=function(_8,_9,_a,_b){
|
||||
var _c=dojo.doc,_d=dojo._bodyLtr,_e=dojo.isQuirks;
|
||||
try{
|
||||
dojo.doc=_8;
|
||||
delete dojo._bodyLtr;
|
||||
dojo.isQuirks=dojo.doc.compatMode=="BackCompat";
|
||||
if(_a&&typeof _9=="string"){
|
||||
_9=_a[_9];
|
||||
}
|
||||
return _9.apply(_a,_b||[]);
|
||||
}
|
||||
finally{
|
||||
dojo.doc=_c;
|
||||
delete dojo._bodyLtr;
|
||||
if(_d!==undefined){
|
||||
dojo._bodyLtr=_d;
|
||||
}
|
||||
dojo.isQuirks=_e;
|
||||
}
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user