Skip to content

Instantly share code, notes, and snippets.

@JamieMason
Created August 20, 2014 13:41
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 JamieMason/ef9c60f6df0340e693d6 to your computer and use it in GitHub Desktop.
Save JamieMason/ef9c60f6df0340e693d6 to your computer and use it in GitHub Desktop.
Get nesting/depth of an AngularJS $scope
function getDepth($scope) {
var depth = 0;
while ($scope.$parent) {
$scope = $scope.$parent;
depth++;
}
return depth;
}
console.log(
getDepth(
angular.element($0).scope()
)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment