X-Git-Url: https://mop.ddnsfree.com/gitweb/?a=blobdiff_plain;f=web%2Fxynt-streaming.js;fp=web%2Fxynt-streaming.js;h=a8cad92232d237bf70df822d0ad1f3b9f06287d8;hb=14136ff3d45c9d1212d6b5e0fd789b57ed73b893;hp=117c9f73fde2fb60072654c4f6a8e5dd621c8786;hpb=500b601f26d3c352800f45136e2ff617c8f7627c;p=brisk.git diff --git a/web/xynt-streaming.js b/web/xynt-streaming.js index 117c9f7..a8cad92 100644 --- a/web/xynt-streaming.js +++ b/web/xynt-streaming.js @@ -390,12 +390,15 @@ xynt_streaming.prototype = { // transport instantiation if (this.transp_type == "xhr") { + this.page = url_append_args(this.page, "transp", "xhr"); this.transp = new transport_xhr(this.doc, this, this.page); } else if (this.transp_type == "iframe") { + this.page = url_append_args(this.page, "transp", "iframe"); this.transp = new transport_iframe(this.doc, this, this.page); } else if (this.transp_type == "htmlfile") { + this.page = url_append_args(this.page, "transp", "htmlfile"); this.transp = new transport_htmlfile(this.doc, this, this.page); } else