Fixed issue 304, changed status of project to alpha
git-svn-id: http://svg-edit.googlecode.com/svn/trunk@877 eee81c28-f429-11dd-99c0-75d572ba1dddmaster
parent
0fa6da2afc
commit
c287c5a531
|
@ -323,7 +323,7 @@ script type="text/javascript" src="locale/locale.min.js"></script-->
|
|||
<div id="tools_bottom_3">
|
||||
<div id="palette_holder"><div id="palette" title="Click to change fill color, shift-click to change stroke color"></div></div>
|
||||
</div>
|
||||
<div id="copyright">Powered by <a href="http://svg-edit.googlecode.com/" target="_blank">SVG-edit v2.4-unstable</a></div>
|
||||
<div id="copyright">Powered by <a href="http://svg-edit.googlecode.com/" target="_blank">SVG-edit v2.4-alpha</a></div>
|
||||
</div>
|
||||
|
||||
<!-- hidden divs -->
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue