view mod_conversejs/template.js @ 3652:d0c2f001735f

mod_map: Include last body text Body, timestamp and message count allows showing modern conversation list UI without a full archive sync.
author Kim Alvefur <zash@zash.se>
date Fri, 23 Aug 2019 01:18:24 +0200
parents 1921ae4449b8
children
line wrap: on
line source

if(typeof converse == 'undefined') {
	var div = document.createElement("div");
	var noscript = document.getElementsByTagName("noscript")[0];
	div.innerHTML = noscript.innerText;
	document.body.appendChild(div);
} else {
	converse.initialize(%s);
}