Merge branch 'bzr/golem' of /Users/distler/Sites/code/instiki

This commit is contained in:
Jacques Distler 2010-02-16 11:22:58 -06:00
commit ffc7a528f8

View file

@ -7593,11 +7593,9 @@ function BatchCommand(text) {
// we also do it manually because Opera/Win/non-EN puts , instead of . // we also do it manually because Opera/Win/non-EN puts , instead of .
var copyElem = function(el) { var copyElem = function(el) {
// manually create a copy of the element // manually create a copy of the element
var new_el = document.createElementNS(svgns, el.nodeName); var new_el = document.createElementNS(el.namespaceURI, el.nodeName);
$.each(el.attributes, function(i, attr) { $.each(el.attributes, function(i, attr) {
var ns = attr.localName == 'href' ? xlinkns : new_el.setAttributeNS(attr.namespaceURI, attr.nodeName, attr.nodeValue);
attr.prefix == "xml" ? xmlns : null;
new_el.setAttributeNS(ns, attr.nodeName, attr.nodeValue);
}); });
// set the copied element's new id // set the copied element's new id
new_el.removeAttribute("id"); new_el.removeAttribute("id");