I am trying to create a code snippet that has the debugger keyword in it. I use the debug window (IE, FF, Opera) to see CSS style effects, but the debugger stops every time the page is refreshed (as it should be).
Is it possible to switch or disable the debugger keyword through the browser (without removing it from my code) so that I can make the style I want without it, so that it bothers me every time I refresh the page?
myApp.service('User', ['$localStorage', function ($localStorage) { debugger; this.$storage = $localStorage; }]);
thanks
Debugger instruction
source share