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
Aliasing performance.now to now causes an exception in Firefox:
performance.now
now
NS_ERROR_XPC_BAD_OP_ON_WN_PROTO: Illegal operation on WrappedNative prototype object
So either now should call performance.now, or it should just use Date.getTime() and not bother about microseconds :)
Date.getTime()
(This is causing the white posts issue in the buddycloud webclient)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Aliasing
performance.now
tonow
causes an exception in Firefox:So either
now
should callperformance.now
, or it should just useDate.getTime()
and not bother about microseconds :)(This is causing the white posts issue in the buddycloud webclient)
The text was updated successfully, but these errors were encountered: