Fixed Issue 720: Tree of life doesn't render properly

git-svn-id: http://svg-edit.googlecode.com/svn/trunk@1804 eee81c28-f429-11dd-99c0-75d572ba1ddd
master
Alexis Deveria 2010-10-14 17:54:01 +00:00
parent 23c7ede442
commit 9dc297862e
2 changed files with 2 additions and 2000 deletions

File diff suppressed because one or more lines are too long

View File

@ -1708,6 +1708,7 @@ var SVGEditTransformList = function(elem) {
var bits = x.split(/\s*\(/);
var name = bits[0];
var val_bits = bits[1].match(/\s*(.*?)\s*\)/);
val_bits[1] = val_bits[1].replace(/(\d)-/g, "$1 -");
var val_arr = val_bits[1].split(/[, ]+/);
var letters = 'abcdef'.split('');
var mtx = svgroot.createSVGMatrix();