fix titles on ajaxupdate issue, add jsonld-php library

This commit is contained in:
zotlabs
2017-08-26 17:21:33 -07:00
parent 0098dce597
commit 187f19b170
6 changed files with 7058 additions and 2 deletions

View File

@@ -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;
}
}
}
});