Commit 4d72b566 by junghwan-park

Deploy 2.2.6a

parent 13e96e00
...@@ -614,7 +614,7 @@ define(["./raphael.core"], function(R) { ...@@ -614,7 +614,7 @@ define(["./raphael.core"], function(R) {
el._.dirty = 1; el._.dirty = 1;
var bb = el._getBBox(), var bb = el._getBBox(),
dif = a.y - (bb.y + bb.height / 2); dif = a.y - (bb.y + bb.height / 2);
dif && R.is(dif, "finite") && $(tspans[0], {dy: dif}); if (bb.height) dif && R.is(dif, "finite") && $(tspans[0], {dy: dif});
}, },
getRealNode = function (node) { getRealNode = function (node) {
if (node.parentNode && node.parentNode.tagName.toLowerCase() === "a") { if (node.parentNode && node.parentNode.tagName.toLowerCase() === "a") {
......
...@@ -5485,13 +5485,13 @@ return /******/ (function(modules) { // webpackBootstrap ...@@ -5485,13 +5485,13 @@ return /******/ (function(modules) { // webpackBootstrap
/***/ function(module, exports, __webpack_require__) { /***/ function(module, exports, __webpack_require__) {
var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;// Copyright (c) 2013 Adobe Systems Incorporated. All rights reserved. var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;// Copyright (c) 2013 Adobe Systems Incorporated. All rights reserved.
// //
// Licensed under the Apache License, Version 2.0 (the "License"); // Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License. // you may not use this file except in compliance with the License.
// You may obtain a copy of the License at // You may obtain a copy of the License at
// //
// http://www.apache.org/licenses/LICENSE-2.0 // http://www.apache.org/licenses/LICENSE-2.0
// //
// Unless required by applicable law or agreed to in writing, software // Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS, // distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
...@@ -5691,7 +5691,7 @@ return /******/ (function(modules) { // webpackBootstrap ...@@ -5691,7 +5691,7 @@ return /******/ (function(modules) { // webpackBootstrap
- name (array) if you don’t want to use separators, you can use array of strings - name (array) if you don’t want to use separators, you can use array of strings
- f (function) event handler function - f (function) event handler function
** **
= (function) returned function accepts a single numeric parameter that represents z-index of the handler. It is an optional feature and only used when you need to ensure that some subset of handlers will be invoked in a given order, despite of the order of assignment. = (function) returned function accepts a single numeric parameter that represents z-index of the handler. It is an optional feature and only used when you need to ensure that some subset of handlers will be invoked in a given order, despite of the order of assignment.
> Example: > Example:
| eve.on("mouse", eatIt)(2); | eve.on("mouse", eatIt)(2);
| eve.on("mouse", scream); | eve.on("mouse", scream);
...@@ -6256,165 +6256,166 @@ return /******/ (function(modules) { // webpackBootstrap ...@@ -6256,165 +6256,166 @@ return /******/ (function(modules) { // webpackBootstrap
case "title": case "title":
var title = node.getElementsByTagName("title"); var title = node.getElementsByTagName("title");
// Use the existing <title>. // Use the existing <title>.
if (title.length && (title = title[0])) { if (title.length && (title = title[0])) {
title.firstChild.nodeValue = value; title.firstChild.nodeValue = value;
} else { } else {
title = $("title"); title = $("title");
var val = R._g.doc.createTextNode(value); var val = R._g.doc.createTextNode(value);
title.appendChild(val); title.appendChild(val);
node.appendChild(title); node.appendChild(title);
} }
break; break;
case "href": case "href":
case "target": case "target":
var pn = node.parentNode; var pn = node.parentNode;
if (pn.tagName.toLowerCase() != "a") { if (pn.tagName.toLowerCase() != "a") {
var hl = $("a"); var hl = $("a");
pn.insertBefore(hl, node); pn.insertBefore(hl, node);
hl.appendChild(node); hl.appendChild(node);
pn = hl; pn = hl;
} }
if (att == "target") { if (att == "target") {
pn.setAttributeNS(xlink, "show", value == "blank" ? "new" : value); pn.setAttributeNS(xlink, "show", value == "blank" ? "new" : value);
} else { } else {
pn.setAttributeNS(xlink, att, value); pn.setAttributeNS(xlink, att, value);
} }
break; break;
case "cursor": case "cursor":
node.style.cursor = value; node.style.cursor = value;
break; break;
case "transform": case "transform":
o.transform(value); o.transform(value);
break; break;
case "arrow-start": case "arrow-start":
addArrow(o, value); addArrow(o, value);
break; break;
case "arrow-end": case "arrow-end":
addArrow(o, value, 1); addArrow(o, value, 1);
break; break;
case "clip-rect": case "clip-rect":
var rect = Str(value).split(separator); var rect = Str(value).split(separator);
if (rect.length == 4) { if (rect.length == 4) {
o.clip && o.clip.parentNode.parentNode.removeChild(o.clip.parentNode); o.clip && o.clip.parentNode.parentNode.removeChild(o.clip.parentNode);
var el = $("clipPath"), var el = $("clipPath"),
rc = $("rect"); rc = $("rect");
el.id = R.createUUID(); el.id = R.createUUID();
$(rc, { $(rc, {
x: rect[0], x: rect[0],
y: rect[1], y: rect[1],
width: rect[2], width: rect[2],
height: rect[3] height: rect[3]
}); });
el.appendChild(rc); el.appendChild(rc);
o.paper.defs.appendChild(el); o.paper.defs.appendChild(el);
$(node, {"clip-path": "url(#" + el.id + ")"}); $(node, {"clip-path": "url(#" + el.id + ")"});
o.clip = rc; o.clip = rc;
} }
if (!value) { if (!value) {
var path = node.getAttribute("clip-path"); var path = node.getAttribute("clip-path");
if (path) { if (path) {
var clip = R._g.doc.getElementById(path.replace(/(^url\(#|\)$)/g, E)); var clip = R._g.doc.getElementById(path.replace(/(^url\(#|\)$)/g, E));
clip && clip.parentNode.removeChild(clip); clip && clip.parentNode.removeChild(clip);
$(node, {"clip-path": E}); $(node, {"clip-path": E});
delete o.clip; delete o.clip;
} }
} }
break; break;
case "path": case "path":
if (o.type == "path") { if (o.type == "path") {
$(node, {d: value ? attrs.path = R._pathToAbsolute(value) : "M0,0"}); $(node, {d: value ? attrs.path = R._pathToAbsolute(value) : "M0,0"});
o._.dirty = 1; o._.dirty = 1;
if (o._.arrows) { if (o._.arrows) {
"startString" in o._.arrows && addArrow(o, o._.arrows.startString); "startString" in o._.arrows && addArrow(o, o._.arrows.startString);
"endString" in o._.arrows && addArrow(o, o._.arrows.endString, 1); "endString" in o._.arrows && addArrow(o, o._.arrows.endString, 1);
} }
} }
break; break;
case "width": case "width":
node.setAttribute(att, value); node.setAttribute(att, value);
o._.dirty = 1; o._.dirty = 1;
if (attrs.fx) { if (attrs.fx) {
att = "x"; att = "x";
value = attrs.x; value = attrs.x;
} else { } else {
break; break;
} }
case "x": case "x":
if (attrs.fx) { if (attrs.fx) {
value = -attrs.x - (attrs.width || 0); value = -attrs.x - (attrs.width || 0);
} }
case "rx": case "rx":
if (att == "rx" && o.type == "rect") { if (att == "rx" && o.type == "rect") {
break; break;
} }
case "cx": case "cx":
node.setAttribute(att, value); node.setAttribute(att, value);
o.pattern && updatePosition(o); o.pattern && updatePosition(o);
o._.dirty = 1; o._.dirty = 1;
break; break;
case "height": case "height":
node.setAttribute(att, value); node.setAttribute(att, value);
o._.dirty = 1; o._.dirty = 1;
if (attrs.fy) { if (attrs.fy) {
att = "y"; att = "y";
value = attrs.y; value = attrs.y;
} else { } else {
break; break;
} }
case "y": case "y":
if (attrs.fy) { if (attrs.fy) {
value = -attrs.y - (attrs.height || 0); value = -attrs.y - (attrs.height || 0);
} }
case "ry": case "ry":
if (att == "ry" && o.type == "rect") { if (att == "ry" && o.type == "rect") {
break; break;
} }
case "cy": case "cy":
node.setAttribute(att, value); node.setAttribute(att, value);
o.pattern && updatePosition(o); o.pattern && updatePosition(o);
o._.dirty = 1; o._.dirty = 1;
break; break;
case "r": case "r":
if (o.type == "rect") { if (o.type == "rect") {
$(node, {rx: value, ry: value}); $(node, {rx: value, ry: value});
} else { } else {
node.setAttribute(att, value); node.setAttribute(att, value);
} }
o._.dirty = 1; o._.dirty = 1;
break; break;
case "src": case "src":
if (o.type == "image") { if (o.type == "image") {
node.setAttributeNS(xlink, "href", value); node.setAttributeNS(xlink, "href", value);
} }
break; break;
case "stroke-width": case "stroke-width":
if (o._.sx != 1 || o._.sy != 1) { if (o._.sx != 1 || o._.sy != 1) {
value /= mmax(abs(o._.sx), abs(o._.sy)) || 1; value /= mmax(abs(o._.sx), abs(o._.sy)) || 1;
} }
if (o.paper._vbSize) { if (o.paper._vbSize) {
value *= o.paper._vbSize; value *= o.paper._vbSize;
} node.setAttribute(att, value); }
if (attrs["stroke-dasharray"]) { node.setAttribute(att, value);
addDashes(o, attrs["stroke-dasharray"], params); if (attrs["stroke-dasharray"]) {
} addDashes(o, attrs["stroke-dasharray"], params);
if (o._.arrows) { }
"startString" in o._.arrows && addArrow(o, o._.arrows.startString); if (o._.arrows) {
"endString" in o._.arrows && addArrow(o, o._.arrows.endString, 1); "startString" in o._.arrows && addArrow(o, o._.arrows.startString);
} "endString" in o._.arrows && addArrow(o, o._.arrows.endString, 1);
break; }
case "stroke-dasharray": break;
addDashes(o, value, params); case "stroke-dasharray":
break; addDashes(o, value, params);
case "fill": break;
var isURL = Str(value).match(R._ISURL); case "fill":
if (isURL) { var isURL = Str(value).match(R._ISURL);
el = $("pattern"); if (isURL) {
var ig = $("image"); el = $("pattern");
el.id = R.createUUID(); var ig = $("image");
$(el, {x: 0, y: 0, patternUnits: "userSpaceOnUse", height: 1, width: 1}); el.id = R.createUUID();
$(ig, {x: 0, y: 0, "xlink:href": isURL[1]}); $(el, {x: 0, y: 0, patternUnits: "userSpaceOnUse", height: 1, width: 1});
el.appendChild(ig); $(ig, {x: 0, y: 0, "xlink:href": isURL[1]});
el.appendChild(ig);
(function (el) { (function (el) {
R._preload(isURL[1], function () { R._preload(isURL[1], function () {
...@@ -6531,7 +6532,7 @@ return /******/ (function(modules) { // webpackBootstrap ...@@ -6531,7 +6532,7 @@ return /******/ (function(modules) { // webpackBootstrap
el._.dirty = 1; el._.dirty = 1;
var bb = el._getBBox(), var bb = el._getBBox(),
dif = a.y - (bb.y + bb.height / 2); dif = a.y - (bb.y + bb.height / 2);
dif && R.is(dif, "finite") && $(tspans[0], {dy: dif}); if (bb.height) dif && R.is(dif, "finite") && $(tspans[0], {dy: dif});
}, },
getRealNode = function (node) { getRealNode = function (node) {
if (node.parentNode && node.parentNode.tagName.toLowerCase() === "a") { if (node.parentNode && node.parentNode.tagName.toLowerCase() === "a") {
...@@ -8085,255 +8086,255 @@ return /******/ (function(modules) { // webpackBootstrap ...@@ -8085,255 +8086,255 @@ return /******/ (function(modules) { // webpackBootstrap
return this; return this;
}; };
R._engine.path = function (pathString, vml) { R._engine.path = function (pathString, vml) {
var el = createNode("shape"); var el = createNode("shape");
el.style.cssText = cssDot; el.style.cssText = cssDot;
el.coordsize = zoom + S + zoom; el.coordsize = zoom + S + zoom;
el.coordorigin = vml.coordorigin; el.coordorigin = vml.coordorigin;
var p = new Element(el, vml), var p = new Element(el, vml),
attr = {fill: "none", stroke: "#000"}; attr = {fill: "none", stroke: "#000"};
pathString && (attr.path = pathString); pathString && (attr.path = pathString);
p.type = "path"; p.type = "path";
p.path = []; p.path = [];
p.Path = E; p.Path = E;
setFillAndStroke(p, attr); setFillAndStroke(p, attr);
vml.canvas && vml.canvas.appendChild(el); vml.canvas && vml.canvas.appendChild(el);
var skew = createNode("skew"); var skew = createNode("skew");
skew.on = true; skew.on = true;
el.appendChild(skew); el.appendChild(skew);
p.skew = skew; p.skew = skew;
p.transform(E); p.transform(E);
return p; return p;
}; };
R._engine.rect = function (vml, x, y, w, h, r) { R._engine.rect = function (vml, x, y, w, h, r) {
var path = R._rectPath(x, y, w, h, r), var path = R._rectPath(x, y, w, h, r),
res = vml.path(path), res = vml.path(path),
a = res.attrs; a = res.attrs;
res.X = a.x = x; res.X = a.x = x;
res.Y = a.y = y; res.Y = a.y = y;
res.W = a.width = w; res.W = a.width = w;
res.H = a.height = h; res.H = a.height = h;
a.r = r; a.r = r;
a.path = path; a.path = path;
res.type = "rect"; res.type = "rect";
return res; return res;
}; };
R._engine.ellipse = function (vml, x, y, rx, ry) { R._engine.ellipse = function (vml, x, y, rx, ry) {
var res = vml.path(), var res = vml.path(),
a = res.attrs; a = res.attrs;
res.X = x - rx; res.X = x - rx;
res.Y = y - ry; res.Y = y - ry;
res.W = rx * 2; res.W = rx * 2;
res.H = ry * 2; res.H = ry * 2;
res.type = "ellipse"; res.type = "ellipse";
setFillAndStroke(res, { setFillAndStroke(res, {
cx: x, cx: x,
cy: y, cy: y,
rx: rx, rx: rx,
ry: ry ry: ry
}); });
return res; return res;
}; };
R._engine.circle = function (vml, x, y, r) { R._engine.circle = function (vml, x, y, r) {
var res = vml.path(), var res = vml.path(),
a = res.attrs; a = res.attrs;
res.X = x - r; res.X = x - r;
res.Y = y - r; res.Y = y - r;
res.W = res.H = r * 2; res.W = res.H = r * 2;
res.type = "circle"; res.type = "circle";
setFillAndStroke(res, { setFillAndStroke(res, {
cx: x, cx: x,
cy: y, cy: y,
r: r r: r
}); });
return res; return res;
}; };
R._engine.image = function (vml, src, x, y, w, h) { R._engine.image = function (vml, src, x, y, w, h) {
var path = R._rectPath(x, y, w, h), var path = R._rectPath(x, y, w, h),
res = vml.path(path).attr({stroke: "none"}), res = vml.path(path).attr({stroke: "none"}),
a = res.attrs, a = res.attrs,
node = res.node, node = res.node,
fill = node.getElementsByTagName(fillString)[0]; fill = node.getElementsByTagName(fillString)[0];
a.src = src; a.src = src;
res.X = a.x = x; res.X = a.x = x;
res.Y = a.y = y; res.Y = a.y = y;
res.W = a.width = w; res.W = a.width = w;
res.H = a.height = h; res.H = a.height = h;
a.path = path; a.path = path;
res.type = "image"; res.type = "image";
fill.parentNode == node && node.removeChild(fill); fill.parentNode == node && node.removeChild(fill);
fill.rotate = true; fill.rotate = true;
fill.src = src; fill.src = src;
fill.type = "tile"; fill.type = "tile";
res._.fillpos = [x, y]; res._.fillpos = [x, y];
res._.fillsize = [w, h]; res._.fillsize = [w, h];
node.appendChild(fill); node.appendChild(fill);
setCoords(res, 1, 1, 0, 0, 0); setCoords(res, 1, 1, 0, 0, 0);
return res; return res;
}; };
R._engine.text = function (vml, x, y, text) { R._engine.text = function (vml, x, y, text) {
var el = createNode("shape"), var el = createNode("shape"),
path = createNode("path"), path = createNode("path"),
o = createNode("textpath"); o = createNode("textpath");
x = x || 0; x = x || 0;
y = y || 0; y = y || 0;
text = text || ""; text = text || "";
path.v = R.format("m{0},{1}l{2},{1}", round(x * zoom), round(y * zoom), round(x * zoom) + 1); path.v = R.format("m{0},{1}l{2},{1}", round(x * zoom), round(y * zoom), round(x * zoom) + 1);
path.textpathok = true; path.textpathok = true;
o.string = Str(text); o.string = Str(text);
o.on = true; o.on = true;
el.style.cssText = cssDot; el.style.cssText = cssDot;
el.coordsize = zoom + S + zoom; el.coordsize = zoom + S + zoom;
el.coordorigin = "0 0"; el.coordorigin = "0 0";
var p = new Element(el, vml), var p = new Element(el, vml),
attr = { attr = {
fill: "#000", fill: "#000",
stroke: "none", stroke: "none",
font: R._availableAttrs.font, font: R._availableAttrs.font,
text: text text: text
}; };
p.shape = el; p.shape = el;
p.path = path; p.path = path;
p.textpath = o; p.textpath = o;
p.type = "text"; p.type = "text";
p.attrs.text = Str(text); p.attrs.text = Str(text);
p.attrs.x = x; p.attrs.x = x;
p.attrs.y = y; p.attrs.y = y;
p.attrs.w = 1; p.attrs.w = 1;
p.attrs.h = 1; p.attrs.h = 1;
setFillAndStroke(p, attr); setFillAndStroke(p, attr);
el.appendChild(o); el.appendChild(o);
el.appendChild(path); el.appendChild(path);
vml.canvas.appendChild(el); vml.canvas.appendChild(el);
var skew = createNode("skew"); var skew = createNode("skew");
skew.on = true; skew.on = true;
el.appendChild(skew); el.appendChild(skew);
p.skew = skew; p.skew = skew;
p.transform(E); p.transform(E);
return p; return p;
}; };
R._engine.setSize = function (width, height) { R._engine.setSize = function (width, height) {
var cs = this.canvas.style; var cs = this.canvas.style;
this.width = width; this.width = width;
this.height = height; this.height = height;
width == +width && (width += "px"); width == +width && (width += "px");
height == +height && (height += "px"); height == +height && (height += "px");
cs.width = width; cs.width = width;
cs.height = height; cs.height = height;
cs.clip = "rect(0 " + width + " " + height + " 0)"; cs.clip = "rect(0 " + width + " " + height + " 0)";
if (this._viewBox) { if (this._viewBox) {
R._engine.setViewBox.apply(this, this._viewBox); R._engine.setViewBox.apply(this, this._viewBox);
} }
return this; return this;
}; };
R._engine.setViewBox = function (x, y, w, h, fit) { R._engine.setViewBox = function (x, y, w, h, fit) {
R.eve("raphael.setViewBox", this, this._viewBox, [x, y, w, h, fit]); R.eve("raphael.setViewBox", this, this._viewBox, [x, y, w, h, fit]);
var width = this.width, var width = this.width,
height = this.height, height = this.height,
size = 1 / mmax(w / width, h /height), size = 1 / mmax(w / width, h / height),
H, W; H, W;
if (fit) { if (fit) {
H = height / h; H = height / h;
W = width / w; W = width / w;
if (w * H < width) { if (w * H < width) {
x -= (width - w * H) / 2 / H; x -= (width - w * H) / 2 / H;
} }
if (h * W < height) { if (h * W < height) {
y -= (height - h * W) / 2 / W; y -= (height - h * W) / 2 / W;
} }
} }
this._viewBox = [x, y, w, h, !!fit]; this._viewBox = [x, y, w, h, !!fit];
this._viewBoxShift = { this._viewBoxShift = {
dx: -x, dx: -x,
dy: -y, dy: -y,
scale: size scale: size
}; };
this.forEach(function (el) { this.forEach(function (el) {
el.transform(""); el.transform("");
}); });
return this; return this;
}; };
var createNode; var createNode;
R._engine.initWin = function (win) { R._engine.initWin = function (win) {
var doc = win.document; var doc = win.document;
if (doc.styleSheets.length < 31) { if (doc.styleSheets.length < 31) {
doc.createStyleSheet().addRule(".rvml", "behavior:url(#default#VML)"); doc.createStyleSheet().addRule(".rvml", "behavior:url(#default#VML)");
} else { } else {
// no more room, add to the existing one // no more room, add to the existing one
// http://msdn.microsoft.com/en-us/library/ms531194%28VS.85%29.aspx // http://msdn.microsoft.com/en-us/library/ms531194%28VS.85%29.aspx
doc.styleSheets[0].addRule(".rvml", "behavior:url(#default#VML)"); doc.styleSheets[0].addRule(".rvml", "behavior:url(#default#VML)");
} }
try { try {
!doc.namespaces.rvml && doc.namespaces.add("rvml", "urn:schemas-microsoft-com:vml"); !doc.namespaces.rvml && doc.namespaces.add("rvml", "urn:schemas-microsoft-com:vml");
createNode = function (tagName) { createNode = function (tagName) {
return doc.createElement('<rvml:' + tagName + ' class="rvml">'); return doc.createElement('<rvml:' + tagName + ' class="rvml">');
}; };
} catch (e) { } catch (e) {
createNode = function (tagName) { createNode = function (tagName) {
return doc.createElement('<' + tagName + ' xmlns="urn:schemas-microsoft.com:vml" class="rvml">'); return doc.createElement('<' + tagName + ' xmlns="urn:schemas-microsoft.com:vml" class="rvml">');
}; };
} }
}; };
R._engine.initWin(R._g.win); R._engine.initWin(R._g.win);
R._engine.create = function () { R._engine.create = function () {
var con = R._getContainer.apply(0, arguments), var con = R._getContainer.apply(0, arguments),
container = con.container, container = con.container,
height = con.height, height = con.height,
s, s,
width = con.width, width = con.width,
x = con.x, x = con.x,
y = con.y; y = con.y;
if (!container) { if (!container) {
throw new Error("VML container not found."); throw new Error("VML container not found.");
} }
var res = new R._Paper, var res = new R._Paper,
c = res.canvas = R._g.doc.createElement("div"), c = res.canvas = R._g.doc.createElement("div"),
cs = c.style; cs = c.style;
x = x || 0; x = x || 0;
y = y || 0; y = y || 0;
width = width || 512; width = width || 512;
height = height || 342; height = height || 342;
res.width = width; res.width = width;
res.height = height; res.height = height;
width == +width && (width += "px"); width == +width && (width += "px");
height == +height && (height += "px"); height == +height && (height += "px");
res.coordsize = zoom * 1e3 + S + zoom * 1e3; res.coordsize = zoom * 1e3 + S + zoom * 1e3;
res.coordorigin = "0 0"; res.coordorigin = "0 0";
res.span = R._g.doc.createElement("span"); res.span = R._g.doc.createElement("span");
res.span.style.cssText = "position:absolute;left:-9999em;top:-9999em;padding:0;margin:0;line-height:1;"; res.span.style.cssText = "position:absolute;left:-9999em;top:-9999em;padding:0;margin:0;line-height:1;";
c.appendChild(res.span); c.appendChild(res.span);
cs.cssText = R.format("top:0;left:0;width:{0};height:{1};display:inline-block;position:relative;clip:rect(0 {0} {1} 0);overflow:hidden", width, height); cs.cssText = R.format("top:0;left:0;width:{0};height:{1};display:inline-block;position:relative;clip:rect(0 {0} {1} 0);overflow:hidden", width, height);
if (container == 1) { if (container == 1) {
R._g.doc.body.appendChild(c); R._g.doc.body.appendChild(c);
cs.left = x + "px"; cs.left = x + "px";
cs.top = y + "px"; cs.top = y + "px";
cs.position = "absolute"; cs.position = "absolute";
} else { } else {
if (container.firstChild) { if (container.firstChild) {
container.insertBefore(c, container.firstChild); container.insertBefore(c, container.firstChild);
} else { } else {
container.appendChild(c); container.appendChild(c);
} }
} }
res.renderfix = function () {}; res.renderfix = function () {};
return res; return res;
}; };
R.prototype.clear = function () { R.prototype.clear = function () {
R.eve("raphael.clear", this); R.eve("raphael.clear", this);
this.canvas.innerHTML = E; this.canvas.innerHTML = E;
this.span = R._g.doc.createElement("span"); this.span = R._g.doc.createElement("span");
this.span.style.cssText = "position:absolute;left:-9999em;top:-9999em;padding:0;margin:0;line-height:1;display:inline;"; this.span.style.cssText = "position:absolute;left:-9999em;top:-9999em;padding:0;margin:0;line-height:1;display:inline;";
this.canvas.appendChild(this.span); this.canvas.appendChild(this.span);
this.bottom = this.top = null; this.bottom = this.top = null;
}; };
R.prototype.remove = function () { R.prototype.remove = function () {
R.eve("raphael.remove", this); R.eve("raphael.remove", this);
this.canvas.parentNode.removeChild(this.canvas); this.canvas.parentNode.removeChild(this.canvas);
for (var i in this) { for (var i in this) {
this[i] = typeof this[i] == "function" ? R._removedFactory(i) : null; this[i] = typeof this[i] == "function" ? R._removedFactory(i) : null;
} }
return true; return true;
}; };
var setproto = R.st; var setproto = R.st;
for (var method in elproto) if (elproto[has](method) && !setproto[has](method)) { for (var method in elproto) if (elproto[has](method) && !setproto[has](method)) {
......
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -5966,6 +5966,9 @@ return /******/ (function(modules) { // webpackBootstrap ...@@ -5966,6 +5966,9 @@ return /******/ (function(modules) { // webpackBootstrap
if (o._.sx != 1 || o._.sy != 1) { if (o._.sx != 1 || o._.sy != 1) {
value /= mmax(abs(o._.sx), abs(o._.sy)) || 1; value /= mmax(abs(o._.sx), abs(o._.sy)) || 1;
} }
if (o.paper._vbSize) {
value *= o.paper._vbSize;
}
node.setAttribute(att, value); node.setAttribute(att, value);
if (attrs["stroke-dasharray"]) { if (attrs["stroke-dasharray"]) {
addDashes(o, attrs["stroke-dasharray"], params); addDashes(o, attrs["stroke-dasharray"], params);
...@@ -6103,7 +6106,7 @@ return /******/ (function(modules) { // webpackBootstrap ...@@ -6103,7 +6106,7 @@ return /******/ (function(modules) { // webpackBootstrap
el._.dirty = 1; el._.dirty = 1;
var bb = el._getBBox(), var bb = el._getBBox(),
dif = a.y - (bb.y + bb.height / 2); dif = a.y - (bb.y + bb.height / 2);
dif && R.is(dif, "finite") && $(tspans[0], {dy: dif}); if (bb.height) dif && R.is(dif, "finite") && $(tspans[0], {dy: dif});
}, },
getRealNode = function (node) { getRealNode = function (node) {
if (node.parentNode && node.parentNode.tagName.toLowerCase() === "a") { if (node.parentNode && node.parentNode.tagName.toLowerCase() === "a") {
...@@ -7800,9 +7803,9 @@ return /******/ (function(modules) { // webpackBootstrap ...@@ -7800,9 +7803,9 @@ return /******/ (function(modules) { // webpackBootstrap
}; };
R._engine.setViewBox = function (x, y, w, h, fit) { R._engine.setViewBox = function (x, y, w, h, fit) {
R.eve("raphael.setViewBox", this, this._viewBox, [x, y, w, h, fit]); R.eve("raphael.setViewBox", this, this._viewBox, [x, y, w, h, fit]);
var paperSize = this.getSize(), var width = this.width,
width = paperSize.width, height = this.height,
height = paperSize.height, size = 1 / mmax(w / width, h / height),
H, W; H, W;
if (fit) { if (fit) {
H = height / h; H = height / h;
...@@ -7818,10 +7821,10 @@ return /******/ (function(modules) { // webpackBootstrap ...@@ -7818,10 +7821,10 @@ return /******/ (function(modules) { // webpackBootstrap
this._viewBoxShift = { this._viewBoxShift = {
dx: -x, dx: -x,
dy: -y, dy: -y,
scale: paperSize scale: size
}; };
this.forEach(function (el) { this.forEach(function (el) {
el.transform("..."); el.transform("");
}); });
return this; return this;
}; };
......
This source diff could not be displayed because it is too large. You can view the blob instead.
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