Commit e361cc42 by Marat Dreizin

Replaced check "window || this" with "this"

parent 630eb142
...@@ -22,6 +22,6 @@ ...@@ -22,6 +22,6 @@
} else { } else {
glob.Raphael = factory(glob.Raphael); glob.Raphael = factory(glob.Raphael);
} }
}(window || this, function (Raphael) { }(this, function (Raphael) {
return Raphael.ninja(); return Raphael.ninja();
})); }));
\ No newline at end of file
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
} else { } else {
glob.Raphael = factory(glob.eve); glob.Raphael = factory(glob.eve);
} }
}(window || this, function (eve) { }(this, function (eve) {
/*\ /*\
* Raphael * Raphael
[ method ] [ method ]
......
...@@ -18,7 +18,7 @@ ...@@ -18,7 +18,7 @@
} else { } else {
factory(glob.Raphael); factory(glob.Raphael);
} }
}(window || this, function(R) { }(this, function(R) {
if (R && !R.svg) { if (R && !R.svg) {
return; return;
} }
......
...@@ -18,7 +18,7 @@ ...@@ -18,7 +18,7 @@
} else { } else {
factory(glob.Raphael); factory(glob.Raphael);
} }
}(window || this, function(R) { }(this, function(R) {
if (R && !R.vml) { if (R && !R.vml) {
return; return;
} }
......
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
} else { } else {
glob.eve = factory(); glob.eve = factory();
} }
}(window || this, function() { }(this, function() {
var version = "0.5.1", var version = "0.5.1",
has = "hasOwnProperty", has = "hasOwnProperty",
separator = /[\.\/]/, separator = /[\.\/]/,
...@@ -453,7 +453,7 @@ ...@@ -453,7 +453,7 @@
} else { } else {
glob.Raphael = factory(glob.eve); glob.Raphael = factory(glob.eve);
} }
}(window || this, function (eve) { }(this, function (eve) {
/*\ /*\
* Raphael * Raphael
[ method ] [ method ]
...@@ -5829,7 +5829,7 @@ ...@@ -5829,7 +5829,7 @@
} else { } else {
factory(glob.Raphael); factory(glob.Raphael);
} }
}(window || this, function(R) { }(this, function(R) {
if (R && !R.svg) { if (R && !R.svg) {
return; return;
} }
...@@ -7218,7 +7218,7 @@ ...@@ -7218,7 +7218,7 @@
} else { } else {
factory(glob.Raphael); factory(glob.Raphael);
} }
}(window || this, function(R) { }(this, function(R) {
if (R && !R.vml) { if (R && !R.vml) {
return; return;
} }
...@@ -8213,6 +8213,6 @@ ...@@ -8213,6 +8213,6 @@
} else { } else {
glob.Raphael = factory(glob.Raphael); glob.Raphael = factory(glob.Raphael);
} }
}(window || this, function (Raphael) { }(this, function (Raphael) {
return Raphael.ninja(); return Raphael.ninja();
})); }));
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment