Commit e361cc42 by Marat Dreizin

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

parent 630eb142
......@@ -22,6 +22,6 @@
} else {
glob.Raphael = factory(glob.Raphael);
}
}(window || this, function (Raphael) {
}(this, function (Raphael) {
return Raphael.ninja();
}));
\ No newline at end of file
......@@ -16,7 +16,7 @@
} else {
glob.Raphael = factory(glob.eve);
}
}(window || this, function (eve) {
}(this, function (eve) {
/*\
* Raphael
[ method ]
......
......@@ -18,7 +18,7 @@
} else {
factory(glob.Raphael);
}
}(window || this, function(R) {
}(this, function(R) {
if (R && !R.svg) {
return;
}
......
......@@ -18,7 +18,7 @@
} else {
factory(glob.Raphael);
}
}(window || this, function(R) {
}(this, function(R) {
if (R && !R.vml) {
return;
}
......
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -26,7 +26,7 @@
} else {
glob.eve = factory();
}
}(window || this, function() {
}(this, function() {
var version = "0.5.1",
has = "hasOwnProperty",
separator = /[\.\/]/,
......@@ -453,7 +453,7 @@
} else {
glob.Raphael = factory(glob.eve);
}
}(window || this, function (eve) {
}(this, function (eve) {
/*\
* Raphael
[ method ]
......@@ -5829,7 +5829,7 @@
} else {
factory(glob.Raphael);
}
}(window || this, function(R) {
}(this, function(R) {
if (R && !R.svg) {
return;
}
......@@ -7218,7 +7218,7 @@
} else {
factory(glob.Raphael);
}
}(window || this, function(R) {
}(this, function(R) {
if (R && !R.vml) {
return;
}
......@@ -8213,6 +8213,6 @@
} else {
glob.Raphael = factory(glob.Raphael);
}
}(window || this, function (Raphael) {
}(this, function (Raphael) {
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