Skip to content

Commit

Permalink
Make websocket URL work with IE10
Browse files Browse the repository at this point in the history
  • Loading branch information
jcheng5 committed Aug 23, 2013
1 parent 86e291f commit c3a1ba2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ shiny 0.6.0.99
the proxy HTTP request that was made from the Shiny Server process to the R
process, not the request that was made from the web browser to Shiny Server.)

* Fix `getComputedStyle` issue, for IE8 browser compatibility (#196).
* Fix `getComputedStyle` issue, for IE8 browser compatibility (#196). Note:
Shiny Server is still required for IE8/9 compatibility.

shiny 0.6.0
--------------------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion inst/www/shared/shiny.js
Original file line number Diff line number Diff line change
Expand Up @@ -461,7 +461,7 @@
var self = this;

var createSocketFunc = exports.createSocket || function() {
var ws = new WebSocket('ws://' + window.location.host);
var ws = new WebSocket('ws://' + window.location.host + '/websocket');
ws.binaryType = 'arraybuffer';
return ws;
};
Expand Down

0 comments on commit c3a1ba2

Please sign in to comment.