turn browse link into browsing link

pull/34/head
Zlatin Balevsky 2019-12-15 18:40:19 +00:00
parent 2ee84848c4
commit a482fe5c93
1 changed files with 1 additions and 1 deletions

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)