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