forked from GitHub/gf-core
JS translator: fixed typo, before a ul was produced instead of an li
This commit is contained in:
@@ -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);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user