mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-23 10:07:19 +00:00
Fixed typo in dom maker
This commit is contained in:
parent
81af6bdd48
commit
8bd1fa50dc
@ -107,7 +107,7 @@ $tw.utils.domMaker = function(tag,options) {
|
|||||||
element.className = options["class"];
|
element.className = options["class"];
|
||||||
}
|
}
|
||||||
if(options.text) {
|
if(options.text) {
|
||||||
element.appendChild(document.createTextNode(options.text));
|
element.appendChild(doc.createTextNode(options.text));
|
||||||
}
|
}
|
||||||
$tw.utils.each(options.children,function(child) {
|
$tw.utils.each(options.children,function(child) {
|
||||||
element.appendChild(child);
|
element.appendChild(child);
|
||||||
|
Loading…
Reference in New Issue
Block a user