view mod_conversejs/template.js @ 3760:830a01443a2f

mod_presence_cache: Fix traceback due to changes in trunk Reason used to be a string and now it might be an util.error
author Kim Alvefur <zash@zash.se>
date Mon, 09 Dec 2019 16:51:36 +0100
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);
}