Commit dea6daaf by Jeff Nichols Committed by Dmitry Baranovskiy

Changed tabs to spaces.

Signed-off-by: Dmitry Baranovskiy <dmitry.baranovskiy@gmail.com>
parent 399f9560
...@@ -591,15 +591,15 @@ var Raphael = (function (type) { ...@@ -591,15 +591,15 @@ var Raphael = (function (type) {
return this; return this;
}; };
Element.prototype.insertAfter = function (element) { Element.prototype.insertAfter = function (element) {
if (element.Group.nextSibling) { if (element.Group.nextSibling) {
element.Group.parentNode.insertBefore(this.Group, element.Group.nextSibling); element.Group.parentNode.insertBefore(this.Group, element.Group.nextSibling);
} else { } else {
element.Group.parentNode.appendChild(this.Group); element.Group.parentNode.appendChild(this.Group);
} }
return this; return this;
}; };
Element.prototype.insertBefore = function (element) { Element.prototype.insertBefore = function (element) {
element.Group.parentNode.insertBefore(this.Group, element.Group); element.Group.parentNode.insertBefore(this.Group, element.Group);
return this; return this;
}; };
var theCircle = function (vml, x, y, r) { var theCircle = function (vml, x, y, r) {
...@@ -1275,11 +1275,11 @@ var Raphael = (function (type) { ...@@ -1275,11 +1275,11 @@ var Raphael = (function (type) {
} else { } else {
element.node.parentNode.appendChild(this.node); element.node.parentNode.appendChild(this.node);
} }
return this; return this;
}; };
Element.prototype.insertBefore = function (element) { Element.prototype.insertBefore = function (element) {
element.node.parentNode.insertBefore(this.node, element.node); element.node.parentNode.insertBefore(this.node, element.node);
return this; return this;
}; };
var theCircle = function (svg, x, y, r) { var theCircle = function (svg, x, y, r) {
var el = document.createElementNS(svg.svgns, "circle"); var el = document.createElementNS(svg.svgns, "circle");
......
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