summaryrefslogtreecommitdiff
path: root/src/SMAPI.Web/wwwroot/Content
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <github@jplamondonw.com>2017-10-27 21:10:36 -0400
committerJesse Plamondon-Willard <github@jplamondonw.com>2017-10-27 21:10:36 -0400
commit3f43ebcc0e31db523fa82a163374cebf2f577cde (patch)
tree8b41f6cdd9f2894638e7be94e7268220184a9c76 /src/SMAPI.Web/wwwroot/Content
parentad5bb5b49af49c4668fd30fb2a0e606dcefe4ec0 (diff)
downloadSMAPI-3f43ebcc0e31db523fa82a163374cebf2f577cde.tar.gz
SMAPI-3f43ebcc0e31db523fa82a163374cebf2f577cde.tar.bz2
SMAPI-3f43ebcc0e31db523fa82a163374cebf2f577cde.zip
fix issues with subdomain routing in log UI (#358)
Diffstat (limited to 'src/SMAPI.Web/wwwroot/Content')
-rw-r--r--src/SMAPI.Web/wwwroot/Content/js/log-parser.js9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/SMAPI.Web/wwwroot/Content/js/log-parser.js b/src/SMAPI.Web/wwwroot/Content/js/log-parser.js
index b1f8f5c6..3949fabe 100644
--- a/src/SMAPI.Web/wwwroot/Content/js/log-parser.js
+++ b/src/SMAPI.Web/wwwroot/Content/js/log-parser.js
@@ -1,6 +1,7 @@
/* globals $, LZString */
-$(function() {
+var smapi = smapi || {};
+smapi.logParser = function(sectionUrl) {
/*********
** Initialisation
*********/
@@ -75,7 +76,7 @@ $(function() {
$
.ajax({
type: "POST",
- url: "/log/save",
+ url: sectionUrl + "/save",
data: JSON.stringify(paste),
contentType: "application/json" // sent to API
})
@@ -273,7 +274,7 @@ $(function() {
function getData() {
$("#uploader").attr("data-text", "Loading...");
$("#uploader").fadeIn();
- $.get("/log/fetch/" + location.search.substring(1), function(data) {
+ $.get(sectionUrl + "/fetch/" + location.search.substring(1), function(data) {
if (data.success) {
$("#input").val(LZString.decompressFromUTF16(data.content) || data.content);
loadData();
@@ -284,4 +285,4 @@ $(function() {
$("#uploader").fadeOut();
});
}
-});
+};