Commit 2fcf47ba by Dmitry Baranovskiy

Adding clone method and fixing parameterless attr() call.

parent 39783320
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -1404,6 +1404,10 @@ window.Raphael = (function () { ...@@ -1404,6 +1404,10 @@ window.Raphael = (function () {
for (var i in this.attrs) if (this.attrs[has](i)) { for (var i in this.attrs) if (this.attrs[has](i)) {
res[i] = this.attrs[i]; res[i] = this.attrs[i];
} }
this._.rt.deg && (res.rotation = this.rotate());
(this._.sx != 1 || this._.sy != 1) && (res.scale = this.scale());
delete res.translation;
res.gradient && res.fill == "none" && (res.fill = res.gradient) && delete res.gradient;
return res; return res;
} }
if (arguments[length] == 1 && R.is(arguments[0], "string")) { if (arguments[length] == 1 && R.is(arguments[0], "string")) {
...@@ -2108,6 +2112,10 @@ window.Raphael = (function () { ...@@ -2108,6 +2112,10 @@ window.Raphael = (function () {
for (var i in this.attrs) if (this.attrs[has](i)) { for (var i in this.attrs) if (this.attrs[has](i)) {
res[i] = this.attrs[i]; res[i] = this.attrs[i];
} }
this._.rt.deg && (res.rotation = this.rotate());
(this._.sx != 1 || this._.sy != 1) && (res.scale = this.scale());
delete res.translation;
res.gradient && res.fill == "none" && (res.fill = res.gradient) && delete res.gradient;
return res; return res;
} }
if (arguments[length] == 1 && R.is(arguments[0], "string")) { if (arguments[length] == 1 && R.is(arguments[0], "string")) {
...@@ -2468,7 +2476,7 @@ window.Raphael = (function () { ...@@ -2468,7 +2476,7 @@ window.Raphael = (function () {
return new Set(itemsArray); return new Set(itemsArray);
}; };
paper.setSize = setSize; paper.setSize = setSize;
function scaleToString() { function x_y() {
return this.x + S + this.y; return this.x + S + this.y;
}; };
Element[proto].scale = function (x, y, cx, cy) { Element[proto].scale = function (x, y, cx, cy) {
...@@ -2476,7 +2484,7 @@ window.Raphael = (function () { ...@@ -2476,7 +2484,7 @@ window.Raphael = (function () {
return { return {
x: this._.sx, x: this._.sx,
y: this._.sy, y: this._.sy,
toString: scaleToString toString: x_y
}; };
} }
y = y || x; y = y || x;
...@@ -2598,6 +2606,9 @@ window.Raphael = (function () { ...@@ -2598,6 +2606,9 @@ window.Raphael = (function () {
} }
return this; return this;
}; };
Element[proto].clone = function () {
return this.paper[this.type]().attr(this.attr());
};
// animation easing formulas // animation easing formulas
R.easing_formulas = { R.easing_formulas = {
...@@ -2755,7 +2766,7 @@ window.Raphael = (function () { ...@@ -2755,7 +2766,7 @@ window.Raphael = (function () {
}, },
translate = function (x, y) { translate = function (x, y) {
if (x == null) { if (x == null) {
return {x: this._.tx, y: this._.ty}; return {x: this._.tx, y: this._.ty, toString: x_y};
} }
this._.tx += +x; this._.tx += +x;
this._.ty += +y; this._.ty += +y;
......
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