You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
TypedArray support is broken in Safari due to the initial check in
lib-typedarrays.js. In Safari, typeof ArrayBuffer is an 'object'. Here is a
patch that works for all browsers.
Index: lib-typedarrays.js
===================================================================
--- lib-typedarrays.js (revision 643)
+++ lib-typedarrays.js (working copy)
@@ -1,6 +1,6 @@
(function () {
// Check if typed arrays are supported
- if (typeof ArrayBuffer != 'function') {
+ if (typeof ArrayBuffer === 'undefined') {
return;
}
Original issue reported on code.google.com by e...@dnanexus.com on 24 Jan 2013 at 11:04
Original issue reported on code.google.com by
e...@dnanexus.com
on 24 Jan 2013 at 11:04Attachments:
The text was updated successfully, but these errors were encountered: