We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Firefox 4 (an old release I agree) gives an error when loading the jsencrypt.js file. The error is in https://github.com/travist/jsencrypt/blob/master/jsbn/rng.js#L35 :
window.addEventListener("mousemove", onMouseMoveListener);
Firefox4 complains about a missing parameter. When adding "false" as a third parameter, the error is not raised up:
window.addEventListener("mousemove", onMouseMoveListener, false);
This issue is also reported in CreateJS/PreloadJS#4
@travist thanks for jsencrypt. It works as a breeze and is well documented.
The text was updated successfully, but these errors were encountered:
Added false as a third parameter in window.addEventListener, fix trav…
10c7bed
…ist/jsencrypt#22
fixed in branch develop, as soon as finish the ECC part i'll merge it into master
Sorry, something went wrong.
No branches or pull requests
Firefox 4 (an old release I agree) gives an error when loading the jsencrypt.js file. The error is in https://github.com/travist/jsencrypt/blob/master/jsbn/rng.js#L35 :
Firefox4 complains about a missing parameter. When adding "false" as a third parameter, the error is not raised up:
This issue is also reported in CreateJS/PreloadJS#4
@travist thanks for jsencrypt. It works as a breeze and is well documented.
The text was updated successfully, but these errors were encountered: