Commit dbe241f4 by Dmitry Baranovskiy

1.5.2 hot fix for scale method

parent 4f2accdf
This source diff could not be displayed because it is too large. You can view the blob instead.
/*! /*!
* Raphael 1.5.1 - JavaScript Vector Library * Raphael 1.5.2 - JavaScript Vector Library
* *
* Copyright (c) 2010 Dmitry Baranovskiy (http://raphaeljs.com) * Copyright (c) 2010 Dmitry Baranovskiy (http://raphaeljs.com)
* Licensed under the MIT (http://www.opensource.org/licenses/mit-license.php) license. * Licensed under the MIT (http://raphaeljs.com/license.html) license.
*/ */
(function () { (function () {
function R() { function R() {
...@@ -18,7 +18,7 @@ ...@@ -18,7 +18,7 @@
} }
return create[apply](R, arguments); return create[apply](R, arguments);
} }
R.version = "1.5.1"; R.version = "1.5.2";
var separator = /[, ]+/, var separator = /[, ]+/,
elements = {circle: 1, rect: 1, path: 1, ellipse: 1, text: 1, image: 1}, elements = {circle: 1, rect: 1, path: 1, ellipse: 1, text: 1, image: 1},
formatrg = /\{(\d+)\}/g, formatrg = /\{(\d+)\}/g,
...@@ -2902,7 +2902,7 @@ ...@@ -2902,7 +2902,7 @@
p[path[i][length] - 1] *= fy; p[path[i][length] - 1] *= fy;
p[1] *= kx; p[1] *= kx;
p[2] *= ky; p[2] *= ky;
p[5] = +(dirx + diry ? !+p[4] : !!+p[4]); p[5] = +(dirx + diry ? !!+p[5] : !+p[5]);
} else if (P0 == "H") { } else if (P0 == "H") {
for (var j = 1, jj = p[length]; j < jj; j++) { for (var j = 1, jj = p[length]; j < jj; j++) {
p[j] *= fx; p[j] *= fx;
......
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