1
0
forked from GitHub/gf-core

JS translator: fixed typo, before a ul was produced instead of an li

This commit is contained in:
bjorn
2008-08-15 11:28:41 +00:00
parent a4bc886a31
commit 310d7cc63a

View File

@@ -27,7 +27,7 @@ function addDefinition (dl, t, d) {
} }
function addItem (ul, i) { function addItem (ul, i) {
var li = document.createElement("ul"); var li = document.createElement("li");
li.appendChild(i); li.appendChild(i);
ul.appendChild(li); ul.appendChild(li);
} }