Uint8Array not defined when loading page on IE9
See original GitHub issueIssue details
When I run a page with browserSync on IE9, I get the error “Uint8Array not defined” on file browser-sync-client.2.15.0.js. No problems with Firefox and Chrome
Steps to reproduce/test case
Run browserSync with Gulp-3.9.1. and load the page on IE9
Please specify which version of Browsersync, node and npm you’re running
- Browsersync [2.15.0]
- Node [6.2.1]
- Npm [3.9.5]
Affected platforms
- linux
- windows
- OS X
- freebsd
- solaris
- other (please specify which)
Browsersync use-case
- API
- Gulp
- Grunt
- CLI
for all other use-cases, (gulp, grunt etc), please show us exactly how you’re using Browsersync
gulp.task('serve', ['dist'], () => {
browserSync.init({
server: {
baseDir: 'dist/'
},
open: false,
notify: false
});
gulp.watch('src/scss/*.scss', ['dist:css']).on('change', browserSync.reload);
gulp.watch('src/html/*.html', ['dist:html']).on('change', browserSync.reload);
gulp.watch('src/js/*.js', ['dist:js']).on('change', browserSync.reload);
});
Issue Analytics
- State:
- Created 7 years ago
- Reactions:3
- Comments:9 (1 by maintainers)
Top Results From Across the Web
How to read binary data in IE9? - javascript - Stack Overflow
Currently, it only works in Firefox, Chrome, and Safari. It doesn't work in IE9. The browser supports SVG but not Uint8Array. Is there...
Read more >Using XMLHttpRequest - Web APIs | MDN
In this guide, we'll take a look at how to use XMLHttpRequest to issue HTTP requests in order to exchange data between the...
Read more >JSDoc: Source: orasocket.js
@function oc * @memberof wf * @param {uInt8Array} framedData The array that contains the ... "undefined") { var versionString = navigator.plugins["Shockwave ...
Read more >ZX Spectrum (functional), IPhone, Linux and other emulators ...
Error occured in IE9 is: ArrayBuffer and Uint8Array objects are undefined. is_ie = (typeof ActiveXObject == "function"); if (!is_ie) {
Read more >jspdf - Google Code
ID Status Summary
21 New sprintf is not defined Type‑Defect Priority‑Medium
18 New umlaute Type‑Defect Priority‑Medium
15 New Supported browsers Type‑Defect Priority‑Medium
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
+1
v2.6.9 works fine
+1