Reputation: 963
I'm debugging a JS code with Chrome Devtools. I set a DOM breakpoint, the code hit it, but I cannot continue (ie, the controls for "next line", "continue", etc. are missing)...I could only run my code again after closing the browser and opening it again...
Upvotes: 2
Views: 2373
Reputation: 1075437
The controls aren't shown in the DOM window, but you can continue in two ways:
In the window you're debugging, in the center at the top, there should be a small overlay saying "Paused in debugger" with a run icon. Click the run icon.
Switch to the Sources tab, which has the various buttons, and use one of those.
Upvotes: 5