Removed base64-encoding from egw_instant_load.html, added code to egw_json which inserts script tags seperately when content is assigned to the innerHTML property

This commit is contained in:
Andreas Stöckel
2011-03-17 18:00:24 +00:00
parent 6a58d3c612
commit e19cc44fcb
3 changed files with 58 additions and 54 deletions

View File

@ -338,6 +338,12 @@ egw_json_request.prototype.handleResponse = function(data, textStatus, XMLHttpRe
if (obj)
{
obj[res.data.key] = res.data.value;
if (res.data.key == "innerHTML")
{
egw_insertJS(res.data.value);
}
hasResponse = true;
}
} else