Skip to content

Instantly share code, notes, and snippets.

@nicovalencia
Created October 8, 2014 22:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nicovalencia/95b38a2efaef7dbb205d to your computer and use it in GitHub Desktop.
Save nicovalencia/95b38a2efaef7dbb205d to your computer and use it in GitHub Desktop.
(function () { var root = $(document.getElementsByTagName('body')); var watchers = []; var f = function (element) { if (element.data().hasOwnProperty('$scope')) { angular.forEach(element.data().$scope.$$watchers, function (watcher) { watchers.push(watcher); }); } angular.forEach(element.children(), function (childElement) { f($(childElement)); }); }; f(root); console.log(watchers.length); })();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment