Try not using data URI with blackberry

This commit is contained in:
Joe Cheng
2015-09-16 10:56:34 +01:00
parent d4e3329d7a
commit 305652f907
5 changed files with 6 additions and 6 deletions

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();