Angular.js listens for click events on $('html') element for navigation purpose. I don't know why they use such approach, but it results in conflict with dj-debug-toolbar.
toolbar.js adds delegated handlers to $(document), but angular.js handles this events in the first instance, thus every click in debug-toolbar leads to page reloading.
Handlers bound to $('html') are executed before $(document)