Commit 9af591c7 by Dmitry Baranovskiy

1.4.7 Hot fix for IE insertBefore & insertAfter when you pass set as an argument.

parent fa3418b9
/*!
* Raphael 1.4.6 - JavaScript Vector Library
* Raphael 1.4.7 - JavaScript Vector Library
*
* Copyright (c) 2010 Dmitry Baranovskiy (http://raphaeljs.com)
* Licensed under the MIT (http://www.opensource.org/licenses/mit-license.php) license.
......@@ -19,7 +19,7 @@ Raphael = (function () {
}
return create[apply](R, arguments);
}
R.version = "1.4.6";
R.version = "1.4.7";
var separator = /[, ]+/,
elements = /^(circle|rect|path|ellipse|text|image)$/,
proto = "prototype",
......@@ -1748,7 +1748,7 @@ Raphael = (function () {
xy,
newpath = (params.x != a.x || params.y != a.y || params.width != a.width || params.height != a.height || params.r != a.r) && o.type == "rect",
res = o;
for (var par in params) if (params[has](par)) {
a[par] = params[par];
}
......@@ -2244,6 +2244,9 @@ Raphael = (function () {
if (this.removed) {
return this;
}
if (element.constructor == Set) {
element = element[element.length];
}
if (element.Group.nextSibling) {
element.Group.parentNode.insertBefore(this.Group, element.Group.nextSibling);
} else {
......@@ -2256,6 +2259,9 @@ Raphael = (function () {
if (this.removed) {
return this;
}
if (element.constructor == Set) {
element = element[0];
}
element.Group.parentNode.insertBefore(this.Group, element.Group);
insertbefore(this, element, this.paper);
return this;
......
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