Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Disable the debugger statement through the browser

I am trying to style a piece of code that has the debugger keyword in it. I am using the debugging window(IE, FF, Opera) to see CSS style effects but the debugger is stopping every time I refresh the page(as it should).

Can I toggle or disable the debugger keyword through the browser(not by deleting it from my code) so I could do the style I want without it bothering me every time I refresh the page?

myApp.service('User', ['$localStorage', function ($localStorage) {
    debugger;
    this.$storage = $localStorage;
}]);

Thanks

The debugger statement

like image 604
Randall Flagg Avatar asked Oct 26 '14 04:10

Randall Flagg


1 Answers

You can now select "Never pause here" from the menu after right-clicking on a line number. It will prevent Chrome from pausing on the debugger statement.

Never pause here

like image 121
Matt Zeunert Avatar answered Sep 23 '22 04:09

Matt Zeunert