aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoman Gräf <roman.graef@gmail.com>2017-11-01 12:51:37 +0100
committerGitHub <noreply@github.com>2017-11-01 12:51:37 +0100
commit8bbecd7b09d4cab00165caee269a8176b4007f48 (patch)
treee468e401d3d866210fb0c7463f087d52d09c2acb
parentc0dfde9225409992ff22b9e652816988e0b3cfe1 (diff)
downloadichtml-8bbecd7b09d4cab00165caee269a8176b4007f48.tar.gz
ichtml-8bbecd7b09d4cab00165caee269a8176b4007f48.tar.bz2
ichtml-8bbecd7b09d4cab00165caee269a8176b4007f48.zip
Update default.js
-rw-r--r--res/default.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/res/default.js b/res/default.js
index fad25f3..350a2de 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("/content/"+file, function(data) {
+ $.get("content/"+file, function(data) {
$("#content").html(data);
}, "text");
}