Skip to content

Commit

Permalink
Project Build
Browse files Browse the repository at this point in the history
  • Loading branch information
Jacob Carter committed Sep 13, 2016
1 parent 9c4fab4 commit acf52b8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion dist/angular-ui-tree.js
@@ -1,5 +1,5 @@
/**
* @license Angular UI Tree v2.21.1
* @license Angular UI Tree v2.21.2
* (c) 2010-2016. https://github.com/angular-ui-tree/angular-ui-tree
* License: MIT
*/
Expand Down Expand Up @@ -166,6 +166,9 @@
* result is 0 (it has no subtree).
*/
function countSubTreeDepth(scope) {
if (!scope) {
return 0;
}
var thisLevelDepth = 0,
childNodes = scope.childNodes(),
childNode,
Expand Down

0 comments on commit acf52b8

Please sign in to comment.