aboutsummaryrefslogtreecommitdiffstats
path: root/view/js/main.js
diff options
context:
space:
mode:
Diffstat (limited to 'view/js/main.js')
-rw-r--r--view/js/main.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/view/js/main.js b/view/js/main.js
index ece4c2015..47815d2c6 100644
--- a/view/js/main.js
+++ b/view/js/main.js
@@ -596,8 +596,9 @@ function updateConvItems(mode,data) {
var title = $(".wall-item-title").text();
title.replace(/^\s+/, '');
title.replace(/\s+$/, '');
- if (title)
- document.title = title + " - " + document.title;
+ if (title) {
+ savedTitle = title + " " + savedTitle;
+ }
}
}
});