Commit 7e704f68 by ipetropolsky

Build

parent ffeb9149
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -5366,7 +5366,15 @@ ...@@ -5366,7 +5366,15 @@
| })(Raphael.ninja()); | })(Raphael.ninja());
\*/ \*/
R.ninja = function () { R.ninja = function () {
oldRaphael.was ? (g.win.Raphael = oldRaphael.is) : delete window.Raphael; if (oldRaphael.was) {
g.win.Raphael = oldRaphael.is;
} else {
// IE8 raises an error when deleting window property
window.Raphael = undefined;
try {
delete window.Raphael;
} catch(e) {}
}
return R; return R;
}; };
/*\ /*\
...@@ -5575,7 +5583,13 @@ ...@@ -5575,7 +5583,13 @@
return "url('#" + id + "')"; return "url('#" + id + "')";
} }
var location = document.location; var location = document.location;
return "url('" + location.origin + location.pathname + location.search + "#" + id + "')"; var locationString = (
location.protocol + '//' +
location.host +
location.pathname +
location.search
);
return "url('" + locationString + "#" + id + "')";
}, },
updatePosition = function (o) { updatePosition = function (o) {
var bbox = o.getBBox(1); var bbox = o.getBBox(1);
...@@ -7868,7 +7882,7 @@ ...@@ -7868,7 +7882,7 @@
})); }));
// ┌────────────────────────────────────────────────────────────────────┐ \\ // ┌────────────────────────────────────────────────────────────────────┐ \\
// │ Raphaël @VERSION - JavaScript Vector Library │ \\ // │ Raphaël 2.1.4 - JavaScript Vector Library │ \\
// ├────────────────────────────────────────────────────────────────────┤ \\ // ├────────────────────────────────────────────────────────────────────┤ \\
// │ Copyright © 2008-2012 Dmitry Baranovskiy (http://raphaeljs.com) │ \\ // │ Copyright © 2008-2012 Dmitry Baranovskiy (http://raphaeljs.com) │ \\
// │ Copyright © 2008-2012 Sencha Labs (http://sencha.com) │ \\ // │ Copyright © 2008-2012 Sencha Labs (http://sencha.com) │ \\
......
...@@ -5748,7 +5748,15 @@ ...@@ -5748,7 +5748,15 @@
| })(Raphael.ninja()); | })(Raphael.ninja());
\*/ \*/
R.ninja = function () { R.ninja = function () {
oldRaphael.was ? (g.win.Raphael = oldRaphael.is) : delete window.Raphael; if (oldRaphael.was) {
g.win.Raphael = oldRaphael.is;
} else {
// IE8 raises an error when deleting window property
window.Raphael = undefined;
try {
delete window.Raphael;
} catch(e) {}
}
return R; return R;
}; };
/*\ /*\
...@@ -5957,7 +5965,13 @@ ...@@ -5957,7 +5965,13 @@
return "url('#" + id + "')"; return "url('#" + id + "')";
} }
var location = document.location; var location = document.location;
return "url('" + location.origin + location.pathname + location.search + "#" + id + "')"; var locationString = (
location.protocol + '//' +
location.host +
location.pathname +
location.search
);
return "url('" + locationString + "#" + id + "')";
}, },
updatePosition = function (o) { updatePosition = function (o) {
var bbox = o.getBBox(1); var bbox = o.getBBox(1);
...@@ -8250,7 +8264,7 @@ ...@@ -8250,7 +8264,7 @@
})); }));
// ┌────────────────────────────────────────────────────────────────────┐ \\ // ┌────────────────────────────────────────────────────────────────────┐ \\
// │ Raphaël @VERSION - JavaScript Vector Library │ \\ // │ Raphaël 2.1.4 - JavaScript Vector Library │ \\
// ├────────────────────────────────────────────────────────────────────┤ \\ // ├────────────────────────────────────────────────────────────────────┤ \\
// │ Copyright © 2008-2012 Dmitry Baranovskiy (http://raphaeljs.com) │ \\ // │ Copyright © 2008-2012 Dmitry Baranovskiy (http://raphaeljs.com) │ \\
// │ Copyright © 2008-2012 Sencha Labs (http://sencha.com) │ \\ // │ Copyright © 2008-2012 Sencha Labs (http://sencha.com) │ \\
......
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