X-Git-Url: http://mop.ddnsfree.com/gitweb/?a=blobdiff_plain;f=web%2Fxynt-streaming.js;h=47ca44212847ec9c89c0aaacb466616076d58232;hb=428188cc059efade2698f32a0b40861af626cfde;hp=a8cad92232d237bf70df822d0ad1f3b9f06287d8;hpb=14136ff3d45c9d1212d6b5e0fd789b57ed73b893;p=brisk.git diff --git a/web/xynt-streaming.js b/web/xynt-streaming.js index a8cad92..47ca442 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"); } }, @@ -359,8 +365,8 @@ xynt_streaming.prototype = { keepalive_new: -1, keepalives_equal: 0, /* NOTE: right watch_timeout value to 100, for devel reasons use 1000 or more */ - /* restart after 3 * 40 * 100 millisec if server ping is missing => 12secs */ - keepalives_eq_max: 3, + /* restart after 4 * 40 * 100 millisec if server ping is missing => 16secs */ + keepalives_eq_max: 4, watchdog_checktm: 40, // FIXME watchdog_timeout: 100, watchdog_timeout: 100, @@ -472,7 +478,7 @@ xynt_streaming.prototype = { this.keepalives_equal = 0; } - if (this.keepalives_equal > this.keepalives_eq_max) { + if (this.keepalives_equal >= this.keepalives_eq_max) { this.log("hs::watchdog: MAX ACHIEVED "+this.keepalives_equal); this.reload(); // alert("watchdog return reload");