#17661 closed defect (fixed)
websocket occurs error used ie11
Reported by: | worldup | Owned by: | |
---|---|---|---|
Priority: | undecided | Milestone: | 1.8.11 |
Component: | IO | Version: | 1.9.0 |
Keywords: | Cc: | ||
Blocked By: | Blocking: |
Description
socket.js line 13 var ws=new _3(new _1._Url(document.baseURI.replace(/http/i,"ws"),_6.url)); because document.baseURI is not defined
the follow line will be better var url=document.baseURI?document.baseURI:document.URL; var ws=new _3(new _1._Url(url.replace(/http/i,"ws"),_6.url));
Change History (16)
comment:1 Changed 8 years ago by
comment:3 Changed 8 years ago by
Owner: | set to ben hockey <[email protected]…> |
---|---|
Resolution: | duplicate → fixed |
comment:11 Changed 7 years ago by
Component: | General → Dojox |
---|---|
Milestone: | tbd → 1.11 |
comment:16 Changed 7 years ago by
Component: | Dojox → IO |
---|---|
Milestone: | 1.11 → 1.8.11 |
Fixed backported to 1.8.
Note: See
TracTickets for help on using
tickets.
https://github.com/dojo/dojox/pull/145
Corrects this issue and works in IE10/IE11. It also does AMD cleanup on the file, making it much more AMd compliant and relocatable.