Fixed typo in dom maker

print-window-tiddler
Jermolene 2014-03-08 10:43:01 +00:00
rodzic 81af6bdd48
commit 8bd1fa50dc
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -107,7 +107,7 @@ $tw.utils.domMaker = function(tag,options) {
element.className = options["class"];
}
if(options.text) {
element.appendChild(document.createTextNode(options.text));
element.appendChild(doc.createTextNode(options.text));
}
$tw.utils.each(options.children,function(child) {
element.appendChild(child);