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 08fae303df
commit 7a2268d9d5

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);
} }