vendor/assets/javascripts/dojo/_base/window.js in dojo-rails-0.9.9 vs vendor/assets/javascripts/dojo/_base/window.js in dojo-rails-0.9.10
- old
+ new
@@ -3,53 +3,50 @@
Available via Academic Free License >= 2.1 OR the modified BSD license.
see: http://dojotoolkit.org/license for details
*/
//>>built
-define("dojo/_base/window",["./kernel","../has","./sniff"],function(_1,_2){
-_1.doc=this["document"]||null;
-_1.body=function(){
-return _1.doc.body||_1.doc.getElementsByTagName("body")[0];
-};
-_1.setContext=function(_3,_4){
-_1.global=_5.global=_3;
-_1.doc=_5.doc=_4;
-};
-_1.withGlobal=function(_6,_7,_8,_9){
-var _a=_1.global;
+define("dojo/_base/window",["./kernel","./lang","../sniff"],function(_1,_2,_3){
+var _4={global:_1.global,doc:this["document"]||null,body:function(_5){
+_5=_5||_1.doc;
+return _5.body||_5.getElementsByTagName("body")[0];
+},setContext:function(_6,_7){
+_1.global=_4.global=_6;
+_1.doc=_4.doc=_7;
+},withGlobal:function(_8,_9,_a,_b){
+var _c=_1.global;
try{
-_1.global=_5.global=_6;
-return _1.withDoc.call(null,_6.document,_7,_8,_9);
+_1.global=_4.global=_8;
+return _4.withDoc.call(null,_8.document,_9,_a,_b);
}
finally{
-_1.global=_5.global=_a;
+_1.global=_4.global=_c;
}
-};
-_1.withDoc=function(_b,_c,_d,_e){
-var _f=_1.doc,_10=_1.isQuirks,_11=_1.isIE,_12,_13,_14;
+},withDoc:function(_d,_e,_f,_10){
+var _11=_4.doc,_12=_3("quirks"),_13=_3("ie"),_14,_15,_16;
try{
-_1.doc=_5.doc=_b;
-_1.isQuirks=_2.add("quirks",_1.doc.compatMode=="BackCompat",true,true);
-if(_2("ie")){
-if((_14=_b.parentWindow)&&_14.navigator){
-_12=parseFloat(_14.navigator.appVersion.split("MSIE ")[1])||undefined;
-_13=_b.documentMode;
-if(_13&&_13!=5&&Math.floor(_12)!=_13){
-_12=_13;
+_1.doc=_4.doc=_d;
+_1.isQuirks=_3.add("quirks",_1.doc.compatMode=="BackCompat",true,true);
+if(_3("ie")){
+if((_16=_d.parentWindow)&&_16.navigator){
+_14=parseFloat(_16.navigator.appVersion.split("MSIE ")[1])||undefined;
+_15=_d.documentMode;
+if(_15&&_15!=5&&Math.floor(_14)!=_15){
+_14=_15;
}
-_1.isIE=_2.add("ie",_12,true,true);
+_1.isIE=_3.add("ie",_14,true,true);
}
}
-if(_d&&typeof _c=="string"){
-_c=_d[_c];
+if(_f&&typeof _e=="string"){
+_e=_f[_e];
}
-return _c.apply(_d,_e||[]);
+return _e.apply(_f,_10||[]);
}
finally{
-_1.doc=_5.doc=_f;
-_1.isQuirks=_2.add("quirks",_10,true,true);
-_1.isIE=_2.add("ie",_11,true,true);
+_1.doc=_4.doc=_11;
+_1.isQuirks=_3.add("quirks",_12,true,true);
+_1.isIE=_3.add("ie",_13,true,true);
}
-};
-var _5={global:_1.global,doc:_1.doc,body:_1.body,setContext:_1.setContext,withGlobal:_1.withGlobal,withDoc:_1.withDoc};
-return _5;
+}};
+1&&_2.mixin(_1,_4);
+return _4;
});