Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update alert message regarding Firefox version #1870

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/raytrace-parallel/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ concurrency.disabled = true;

// First up, but try to do feature detection to provide better error messages
function loadWasm() {
let msg = 'This demo currently requires Firefox Nightly (64.0) with\n'
let msg = 'This demo requires a current version of Firefox (e.g., 70.0) with\n'
msg += 'the `javascript.options.shared_memory` option enabled in `about:config`';
if (typeof SharedArrayBuffer !== 'function') {
alert('this browser does not have SharedArrayBuffer support enabled' + '\n\n' + msg);
Expand Down