diff options
author | Alexander Tkachev | 2016-07-19 13:12:40 +0600 |
---|---|---|
committer | Alexander Tkachev | 2016-08-24 16:07:55 +0600 |
commit | cd6d45ecf8f24a40d1a0829b93030a5c22829f23 (patch) | |
tree | fb7ec3e3a28a81e67783c528f35300cdb3fa5607 /backends/networking/wwwroot | |
parent | 6442dad71030737b218758838378d1ea26214c4d (diff) | |
download | scummvm-rg350-cd6d45ecf8f24a40d1a0829b93030a5c22829f23.tar.gz scummvm-rg350-cd6d45ecf8f24a40d1a0829b93030a5c22829f23.tar.bz2 scummvm-rg350-cd6d45ecf8f24a40d1a0829b93030a5c22829f23.zip |
CLOUD: Minor "/filesAJAX" fix
Diffstat (limited to 'backends/networking/wwwroot')
-rw-r--r-- | backends/networking/wwwroot/.filesAJAX.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/backends/networking/wwwroot/.filesAJAX.html b/backends/networking/wwwroot/.filesAJAX.html index aab2a0414a..a1c379d53a 100644 --- a/backends/networking/wwwroot/.filesAJAX.html +++ b/backends/networking/wwwroot/.filesAJAX.html @@ -153,7 +153,7 @@ var tr = document.createElement("tr"); var td = document.createElement("td"); var img = document.createElement("img"); - img.src = "http://localhost:12345/icons/" + item.icon; + img.src = "./icons/" + item.icon; td.appendChild(img); tr.appendChild(td); @@ -163,7 +163,7 @@ a.onclick = function () { showDirectory(item.path); }; a.href = "javascript:onclick();"; } else - a.href = "http://localhost:12345/download?path=" + encodeURIComponent(item.path); + a.href = "./download?path=" + encodeURIComponent(item.path); td.appendChild(a); tr.appendChild(td); |