diff --git a/web-world/js-impl.js b/web-world/js-impl.js index 5622eb1..d0c4915 100644 --- a/web-world/js-impl.js +++ b/web-world/js-impl.js @@ -628,11 +628,21 @@ + var rscript = /)<[^<]*)*<\/script>/gi; + // We have to do some kludgery to support the android browser, + // which does not properly parse . + var rlink = /]* \/>(.*?)/gi; var parseStringAsHtml = function(str) { var div = document.createElement("div"); - div.innerHTML = str; + // inject the contents of the document in, removing the scripts + // to avoid any 'Permission Denied' errors in IE + div.innerHTML = str.replace(rscript, "").replace(rlink, ""); + var linkMatches = str.match(rlink); + for (var i = 0; i < linkMatches.length; i++) { + $(div).append($(linkMatches[i])); + } return $(div); };