From c287c5a5315d3ba874d9791e15d694d80f39a6bd Mon Sep 17 00:00:00 2001 From: Alexis Deveria Date: Mon, 26 Oct 2009 14:28:48 +0000 Subject: [PATCH] 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 --- editor/svg-editor.html | 2 +- editor/svgcanvas.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/editor/svg-editor.html b/editor/svg-editor.html index 84d631a0..9e88a6cb 100644 --- a/editor/svg-editor.html +++ b/editor/svg-editor.html @@ -323,7 +323,7 @@ script type="text/javascript" src="locale/locale.min.js">
- + diff --git a/editor/svgcanvas.js b/editor/svgcanvas.js index b459335c..1374b479 100644 --- a/editor/svgcanvas.js +++ b/editor/svgcanvas.js @@ -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;