[Mobile] BackArrow

Removed the BackArrow console log
that was getting called in the
BrowseController.
This commit is contained in:
Shivam Dave 2015-07-29 11:41:10 -07:00
parent 18348476c6
commit 97bf530b1d

View File

@ -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.