diff options
-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");
|