aboutsummaryrefslogtreecommitdiffstats
path: root/view/js/main.js
diff options
context:
space:
mode:
authorzottel <github@zottel.net>2015-02-20 14:07:56 +0100
committerzottel <github@zottel.net>2015-02-20 14:07:56 +0100
commit2c7e8bea88abd4e835645996849e16ecd62dfa35 (patch)
treee8d8986e895063df53966392072c1e7e1bbe47e7 /view/js/main.js
parent7926ed079a880a787cbff6d373438ee924810345 (diff)
downloadvolse-hubzilla-2c7e8bea88abd4e835645996849e16ecd62dfa35.tar.gz
volse-hubzilla-2c7e8bea88abd4e835645996849e16ecd62dfa35.tar.bz2
volse-hubzilla-2c7e8bea88abd4e835645996849e16ecd62dfa35.zip
show item title in channel/mid and display pages
Diffstat (limited to 'view/js/main.js')
-rw-r--r--view/js/main.js11
1 files changed, 10 insertions, 1 deletions
diff --git a/view/js/main.js b/view/js/main.js
index 18004726e..a10e91449 100644
--- a/view/js/main.js
+++ b/view/js/main.js
@@ -563,10 +563,19 @@ function updateConvItems(mode,data) {
}
prev = ident;
});
-
+
if(loadingPage) {
loadingPage = false;
}
+
+ if (window.location.search.indexOf("mid=") != -1 || window.location.pathname.indexOf("display") != -1) {
+ var title = $(".wall-item-title").text();
+ title.replace(/^\s+/, '');
+ title.replace(/\s+$/, '');
+ if (title)
+ document.title = title + " - " + document.title;
+ }
+
}
$('.like-rotator').spin(false);