Debugging Ember.js from chrome

When I try to debug Ember.js from the Chrome browser, its breakpoint for application.js is saved and is saved when the page is refreshed by pressing f5.

I have included "Log XMLHTTP Requests" and "Save Log When Navigating" in the console tab. However, the problem is there ..

Any help?

+5
source share
1 answer

Alternatively, you can set breakpoints in your code. JavaScript:

debugger;

steering wheels:

{{debugger}}
+10
source

All Articles