From 01c7f86c3f5a86c5383268a281b54a66ddb56d5e Mon Sep 17 00:00:00 2001 From: Roman Gräf Date: Wed, 1 Nov 2017 12:46:04 +0100 Subject: Update default.js --- res/default.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/res/default.js b/res/default.js index 6776fae..fad25f3 100644 --- a/res/default.js +++ b/res/default.js @@ -13,7 +13,7 @@ function show_loading() { function load(file, title) { show_loading(); $("#header").text(title); - $.get("file:///H:/ichtml/content/"+file, function(data) { + $.get("/content/"+file, function(data) { $("#content").html(data); }, "text"); } -- cgit