aboutsummaryrefslogtreecommitdiff
path: root/backends
diff options
context:
space:
mode:
authorAlexander Tkachev2016-07-19 13:12:40 +0600
committerAlexander Tkachev2016-08-24 16:07:55 +0600
commitcd6d45ecf8f24a40d1a0829b93030a5c22829f23 (patch)
treefb7ec3e3a28a81e67783c528f35300cdb3fa5607 /backends
parent6442dad71030737b218758838378d1ea26214c4d (diff)
downloadscummvm-rg350-cd6d45ecf8f24a40d1a0829b93030a5c22829f23.tar.gz
scummvm-rg350-cd6d45ecf8f24a40d1a0829b93030a5c22829f23.tar.bz2
scummvm-rg350-cd6d45ecf8f24a40d1a0829b93030a5c22829f23.zip
CLOUD: Minor "/filesAJAX" fix
Diffstat (limited to 'backends')
-rw-r--r--backends/networking/wwwroot.zipbin240788 -> 240746 bytes
-rw-r--r--backends/networking/wwwroot/.filesAJAX.html4
2 files changed, 2 insertions, 2 deletions
diff --git a/backends/networking/wwwroot.zip b/backends/networking/wwwroot.zip
index fc627d50ca..8d6d63012d 100644
--- a/backends/networking/wwwroot.zip
+++ b/backends/networking/wwwroot.zip
Binary files differ
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);