X-Git-Url: https://mop.ddnsfree.com/gitweb/?a=blobdiff_plain;f=web%2Fxynt-streaming.js;h=7e6163891c66cfcfeb61dd1ec20a60af32d70cd0;hb=a3eaf585e7bfab188caef0eb9c126cfcea96a0ee;hp=a8cad92232d237bf70df822d0ad1f3b9f06287d8;hpb=14136ff3d45c9d1212d6b5e0fd789b57ed73b893;p=brisk.git diff --git a/web/xynt-streaming.js b/web/xynt-streaming.js index a8cad92..7e61638 100644 --- a/web/xynt-streaming.js +++ b/web/xynt-streaming.js @@ -244,10 +244,16 @@ transport_iframe.prototype = { ifra: null, destroy: function () { /* public */ - if (this.ifra != null) { - this.doc.body.removeChild(this.ifra); - delete this.ifra; - this.ifra = null; + try { + if (this.ifra != null) { + // FIXME: with opera on win this remove child crash js so is + // commented + // this.doc.body.removeChild(this.ifra); + delete this.ifra; + this.ifra = null; + } + } catch (b) { + alert("catched"); } },