Project Giving Error When Loading

Hi,
I am in the middle of a project, but a few days ago it stopped working. I click on the project, and the browser gives a STATUS_BREAKPOINT error. I have tried on multiple computers with multiple browsers, signed in and not signed in. The problem is the same every time. Could somebody please help me fix this? If not is there any way that I can access the code so I can just copy it? I have tried playing around in developer tools, and I can’t figure this out. Please help.
Thanks

I will include a link to my project page. The specific project is Bruck Vis V1.
Project Page

Greetings,

I can reproduce the crash. This is a good case for recovery mode: https://vizhub.com/henryspradlin/e4c8a2d56e9d4440aaf8c8e3c92c8340?edit=files&file=index.js#recover

That link will open the code but not run the program.

It appears there is an infinite loop in there somewhere.

I think I’ve spotted it on line81:

for(var t = 0; t < (cols); i++){

That should be:

for(var t = 0; t < (cols); t++){

Good luck! And sorry about the frustration that comes with things crashing. Recovering from crashes is something I would like to improve about VizHub, but not sure how.

Actually while doing this I re-discovered a bug where recovery mode goes away when you switch between files. That should not happen. Tracked here: https://github.com/datavis-tech/vizhub-issue-tracker/issues/498

Hi Curran,
Thanks so much for the help and quick response. I really appreciate the vizhub project, I’ll be back on track soon.

1 Like