remove ;, thanks to jshint and zzz

This commit is contained in:
Zlatin Balevsky
2019-12-16 21:35:57 +00:00
parent 14b3a9ac9e
commit ea5da2431a

View File

@ -600,7 +600,7 @@ function browse(host) {
xmlhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
var linkSpan = document.getElementById("browse-link-"+host)
linkSpan.innerHTML = "<a href='/MuWire/BrowseHost'>" + _t("Browsing"); + "</a>"
linkSpan.innerHTML = "<a href='/MuWire/BrowseHost'>" + _t("Browsing") + "</a>"
}
}
xmlhttp.open("POST", "/MuWire/Browse", true)