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

Add Progress Indicator #7

Open
peteamundson opened this issue May 18, 2016 · 1 comment
Open

Add Progress Indicator #7

peteamundson opened this issue May 18, 2016 · 1 comment
Assignees

Comments

@peteamundson
Copy link
Member

When running the anonymizer, it would be nice to see a progress indicator. Currently, when running this against a lot of data, the screen just displays that the operation is in progress instead of showing how long it has taken or how far along the process is.

@mskutta
Copy link
Contributor

mskutta commented May 18, 2016

Can use XHR for this:

var xhr = new XMLHttpRequest()
xhr.open("GET", "/test/chunked", true)
xhr.onprogress = function () {
  console.log("PROGRESS:", xhr.responseText)
}
xhr.send()

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants