turn browse link into browsing link

This commit is contained in:
Zlatin Balevsky
2019-12-15 18:40:19 +00:00
parent 2ee84848c4
commit a482fe5c93

View File

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