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
Got a dual quad core 2015 Macbook Pro, and I'm getting history.js using 12-16% of my CPU constantly (Chrome 52, MacOS El Capitan).
I've traced the problem to the call of History.onUnload = function() - this accounts for 90%+ of the CPU usage.
Specifically I think this is being called continuously - the offending line appears to be:
// For Internet Explorer History.intervalList.push(setInterval(History.onUnload,History.options.storeInterval));
For non IE perhaps we should avoid this line?
The text was updated successfully, but these errors were encountered:
Update: looks to be the same report as #321 and a couple of others. Seems odd why nobody has addressed this in the repo yet.
Sorry, something went wrong.
Fixed performance issue (see browserstate#462).
614f1e0
No branches or pull requests
Got a dual quad core 2015 Macbook Pro, and I'm getting history.js using 12-16% of my CPU constantly (Chrome 52, MacOS El Capitan).
I've traced the problem to the call of History.onUnload = function() - this accounts for 90%+ of the CPU usage.
Specifically I think this is being called continuously - the offending line appears to be:
For non IE perhaps we should avoid this line?
The text was updated successfully, but these errors were encountered: