BigW Consortium Gitlab

Commit ba4e6376 by Phil Hughes Committed by Jacob Schatz

Fixed appending jQuery elements

parent ef5a76f6
......@@ -505,6 +505,10 @@
for (var i = 0; i < html.length; i++) {
var el = html[i];
if (el instanceof jQuery) {
el = el.get(0);
}
if (typeof el === 'string') {
ul.innerHTML += el;
} else {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment