mirror of
https://github.com/nasa/openmct.git
synced 2025-01-19 19:27:07 +00:00
[Mobile] BackArrow
Removed the BackArrow console log that was getting called in the BrowseController.
This commit is contained in:
parent
18348476c6
commit
97bf530b1d
@ -145,18 +145,15 @@ define(
|
||||
} else {
|
||||
$scope.atRoot = true;
|
||||
}
|
||||
console.log($scope.atRoot);
|
||||
}
|
||||
|
||||
function checkRoot() {
|
||||
var parent = navigationService.getNavigation().getCapability('context').getParent(),
|
||||
grandparent;
|
||||
var parent = navigationService.getNavigation().getCapability('context').getParent();
|
||||
if (parent.getId() !== ROOT_ID) {
|
||||
$scope.atRoot = false;
|
||||
} else {
|
||||
$scope.atRoot = true;
|
||||
}
|
||||
console.log($scope.atRoot);
|
||||
}
|
||||
|
||||
// Load the root object, put it in the scope.
|
||||
|
Loading…
Reference in New Issue
Block a user