diff options
author | Roman Gräf <roman.graef@gmail.com> | 2017-11-01 12:57:40 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-01 12:57:40 +0100 |
commit | 921bc38fa935ee6f940bf0a1d6c1464b2e0d19db (patch) | |
tree | 14eb0ed1dd2f04159a34edd985c5dc89d6e330fa | |
parent | 14bc6d05d3aa9b8ebed3a9067abed956af3a4393 (diff) | |
download | ichtml-921bc38fa935ee6f940bf0a1d6c1464b2e0d19db.tar.gz ichtml-921bc38fa935ee6f940bf0a1d6c1464b2e0d19db.tar.bz2 ichtml-921bc38fa935ee6f940bf0a1d6c1464b2e0d19db.zip |
Update default.js
-rw-r--r-- | res/default.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/res/default.js b/res/default.js index 350a2de..96ffd65 100644 --- a/res/default.js +++ b/res/default.js @@ -13,6 +13,7 @@ function show_loading() { function load(file, title) {
show_loading();
$("#header").text(title);
+ document.title = 'IcHTML - ' + title;
$.get("content/"+file, function(data) {
$("#content").html(data);
}, "text");
|