Skip to content

Commit

Permalink
Merge pull request #2 from LPayne91/master
Browse files Browse the repository at this point in the history
Version bump
  • Loading branch information
rjrudman authored Jun 15, 2017
2 parents cc16d25 + 828ca4e commit b00e002
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "NgHierarchicalSelector",
"version": "0.6.0",
"version": "0.6.1",
"homepage": "http://lukemurray.github.io/NgHierarchicalSelector/",
"authors": [
"Luke Murray"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ng-hierarchical-selector",
"version": "0.6.0",
"version": "0.6.1",
"description": "A hierarchical (or tree) selection control for AngularJS",
"main": "index.js",
"publishConfig": {
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -577,7 +577,8 @@ angular.module('hierarchical-selector.tree-item', [
return;
}
if (scope.asyncChildCache[scope.item.$$hashKey]) {
return scope.asyncChildCache[scope.item.$$hashKey];
scope.theChildren = scope.asyncChildCache[scope.item.$$hashKey];
return;
}

scope.theChildren = [{placeholder: true}];
Expand Down
Loading

0 comments on commit b00e002

Please sign in to comment.