Compare commits

...

1 Commits

Author SHA1 Message Date
Joe Cheng
305652f907 Try not using data URI with blackberry 2015-09-16 10:57:59 +01:00
5 changed files with 6 additions and 6 deletions

View File

@@ -619,7 +619,7 @@ var ShinyApp = function() {
$.extend(initialInput, {
// IE8 and IE9 have some limitations with data URIs
".clientdata_allowDataUriScheme": typeof WebSocket !== 'undefined'
".clientdata_allowDataUriScheme": typeof WebSocket !== 'undefined' && !/BlackBerry/.test(window.navigator.userAgent)
});
this.$socket = this.createSocket();

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -27,7 +27,7 @@ var ShinyApp = function() {
$.extend(initialInput, {
// IE8 and IE9 have some limitations with data URIs
".clientdata_allowDataUriScheme": typeof WebSocket !== 'undefined'
".clientdata_allowDataUriScheme": typeof WebSocket !== 'undefined' && !/BlackBerry/.test(window.navigator.userAgent)
});
this.$socket = this.createSocket();