Use global variable xlinkns. Fix tabbing/indentation.

git-svn-id: http://svg-edit.googlecode.com/svn/trunk@584 eee81c28-f429-11dd-99c0-75d572ba1ddd
master
Jeff Schiller 2009-09-05 11:19:42 +00:00
parent 5fe5ce2fe6
commit 93cfb44e91
1 changed files with 3 additions and 5 deletions

View File

@ -1324,8 +1324,7 @@ function BatchCommand(text) {
"opacity": cur_shape.opacity / 2
}
});
var xlinkNS="http://www.w3.org/1999/xlink";
newImage.setAttributeNS(xlinkNS, "href", "images/logo.png")
newImage.setAttributeNS(xlinkns, "href", "images/logo.png")
break;
case "square":
// FIXME: once we create the rect, we lose information that this was a square
@ -2838,8 +2837,7 @@ function BatchCommand(text) {
elem.textContent = newValue;
elem = canvas.quickClone(elem);
} else if (attr == "#href") {
var xlinkNS="http://www.w3.org/1999/xlink";
elem.setAttributeNS(xlinkNS, "href", newValue);
elem.setAttributeNS(xlinkns, "href", newValue);
}
else elem.setAttribute(attr, newValue);
selectedBBoxes[i] = this.getBBox(elem);