Skip to content

Instantly share code, notes, and snippets.

@warmuuh
Created December 18, 2014 12:27
Show Gist options
  • Save warmuuh/6e259c1a2c31a5e065d4 to your computer and use it in GitHub Desktop.
Save warmuuh/6e259c1a2c31a5e065d4 to your computer and use it in GitHub Desktop.
count angular watchers in jsconsole
total = 0; angular.element(".ng-scope").each(function(){ var s = $(this).scope(); total += s.$$watchers ? s.$$watchers.length:0;});total;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment