Skip to content

Commit

Permalink
Merge branch 'main' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
NikRimington committed Jul 6, 2024
2 parents ac6efcc + 8bab4bf commit cd0f3d5
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/HC.PageNotFoundManager/wwwroot/js/dialog.controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,15 @@
}
}

$scope.selectListViewNode = function (node) {
node.selected = node.selected === true ? false : true;
nodeSelectHandler({ node: node });
};

function openMiniListView(node) {
$scope.miniListView = node;
}

function close() {
$scope.nav.hideDialog();
}
Expand Down

0 comments on commit cd0f3d5

Please sign in to comment.