Dmitry
Dmitry

Reputation: 4373

ignore specific js files in chrome dev tools when debugging

Is it possible to ignore certain javascript files when debugging with breakpoints in Chrome Developer Tools? Let's say on this website http://todomvc.com/architecture-examples/angularjs/#/ I want to debug only todoCtrl.js and ignore all other ones like angular.js.

Upvotes: 18

Views: 8348

Answers (1)

jaredwilli
jaredwilli

Reputation: 12308

Yes, you can use JS Blackboxing to do this. The documentation for this feature will be going live soon, but for now you can read the WIP doc on how to do this here:

https://rawgit.com/jaredwilli/devtools-docs/blackboxing/docs/blackboxing.html

Upvotes: 12

Related Questions