Fixed issue 304, changed status of project to alpha

git-svn-id: http://svg-edit.googlecode.com/svn/trunk@877 eee81c28-f429-11dd-99c0-75d572ba1ddd
This commit is contained in:
Alexis Deveria
2009-10-26 14:28:48 +00:00
parent 0fa6da2afc
commit c287c5a531
2 changed files with 2 additions and 2 deletions

View File

@@ -4557,7 +4557,7 @@ function BatchCommand(text) {
if (elem.tagName == "g" && (attr != "transform" && attr != "opacity")) continue;
var oldval = attr == "#text" ? elem.textContent : elem.getAttribute(attr);
if (oldval == null) oldval = "";
if (oldval != newValue) {
if (oldval !== newValue) {
if (attr == "#text") {
var old_w = elem.getBBox().width;
elem.textContent = newValue;