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
{{ message }}
This repository has been archived by the owner on Feb 6, 2022. It is now read-only.
right now, the unminified build libjass.js has sourcemap url information at the end of the file,
//# sourceMappingURL=libjass.js.map
This confuses the some old browsers (Samsung Tizen SDK). Inspector will think that's where it should get the sourcemap from and if it fails to load (404) it'll give up on loading anymore sourcemaps for the rest of the app, practically nuking the sourcemaps support.
As far as I can tell there shouldn't be a need for the unminified version of the file to have any sourcemap information included.
The text was updated successfully, but these errors were encountered:
kayone
changed the title
Current build breaks sourcemaps in older browsers,
Current build breaks sourcemaps in older browsers
Aug 25, 2016
As far as I can tell there shouldn't be a need for the unminified version of the file to have any sourcemap information included.
The sourcemap maps the JS to the original TS. Same for the minified version.
I personally don't need it; I have no problem debugging JS. But rather than me removing it to cater to a buggy browser, perhaps you could strip it out on your end?
right now, the unminified build
libjass.js
has sourcemap url information at the end of the file,//# sourceMappingURL=libjass.js.map
This confuses the some old browsers (Samsung Tizen SDK). Inspector will think that's where it should get the sourcemap from and if it fails to load (404) it'll give up on loading anymore sourcemaps for the rest of the app, practically nuking the sourcemaps support.
As far as I can tell there shouldn't be a need for the unminified version of the file to have any sourcemap information included.
The text was updated successfully, but these errors were encountered: