Content deleted Content added
Mike Dillon (talk | contribs) m don't try to be too tricky |
Mike Dillon (talk | contribs) m sadly, this doesn't work |
||
Line 10:
// Make appendChild automatically wrap string in a text node
/*
var origAppendChild = elem.appendChild;
elem.appendChild = function (child) {
Line 17 ⟶ 18:
origAppendChild(child);
};
*/
return elem;
|