Fixed issue when closing player from frontpage

This commit is contained in:
Kasper Rynning-Tønnesen
2018-04-25 23:29:06 +02:00
parent 4d25db31df
commit e4bafbc0e5

View File

@@ -153,6 +153,7 @@ var Helper = {
},
setHtml: function(element, html) {
try {
if(typeof(element) == "object") {
element.innerHTML = html;
} else if(element.substring(0,1) == "#") {
@@ -169,6 +170,7 @@ var Helper = {
elements[i].innerHTML = html;
}
}
} catch(e) {}
},
attr: function(element, attr, value) {