Commit 38d4ba69 by junghwan-park

Deploy v2.2.0b

parent a8f10206
...@@ -620,7 +620,7 @@ define(["./raphael.core"], function(R) { ...@@ -620,7 +620,7 @@ define(["./raphael.core"], function(R) {
$(node, {x: a.x, y: a.y}); $(node, {x: a.x, y: a.y});
el._.dirty = 1; el._.dirty = 1;
var bb = el._getBBox(), var bb = el._getBBox(),
dif = a.y - (bb.y + bb.height * 8 / 10); dif = a.y - (bb.y + (bb.height / 2));
if (bb.height) 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) {
......
{ {
"name": "raphael", "name": "raphael",
"version": "2.2.0a", "version": "2.2.0b",
"description": "JavaScript Vector Library", "description": "JavaScript Vector Library",
"main": "raphael.min.js", "main": "raphael.min.js",
"author": { "author": {
......
...@@ -6500,7 +6500,7 @@ return /******/ (function(modules) { // webpackBootstrap ...@@ -6500,7 +6500,7 @@ return /******/ (function(modules) { // webpackBootstrap
$(node, {x: a.x, y: a.y}); $(node, {x: a.x, y: a.y});
el._.dirty = 1; el._.dirty = 1;
var bb = el._getBBox(), var bb = el._getBBox(),
dif = a.y - (bb.y + bb.height * 8 / 10); dif = a.y - (bb.y + (bb.height / 2));
if (bb.height) 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) {
......
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -6129,7 +6129,7 @@ return /******/ (function(modules) { // webpackBootstrap ...@@ -6129,7 +6129,7 @@ return /******/ (function(modules) { // webpackBootstrap
$(node, {x: a.x, y: a.y}); $(node, {x: a.x, y: a.y});
el._.dirty = 1; el._.dirty = 1;
var bb = el._getBBox(), var bb = el._getBBox(),
dif = a.y - (bb.y + bb.height * 8 / 10); dif = a.y - (bb.y + (bb.height / 2));
if (bb.height) 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) {
......
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