Created
October 6, 2014 20:03
-
-
Save clemgrim/9f94dac27f973189f69b to your computer and use it in GitHub Desktop.
From http://www.airpair.com/angularjs/posts/top-10-mistakes-angularjs-developers-make
Show current watchers count
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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); | |
})(); | |
Get expert javascript help |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment