More closely matching coding style within the file

This commit is contained in:
Tyler Smith
2016-01-19 19:57:11 -08:00
parent b5b3a1545b
commit f3d6c62484

View File

@@ -14,7 +14,9 @@
if ($scope.$parent._expandedMenu) {
$scope.$parent._expandedMenu.menu = null;
}
if ($scope._expandedMenu) $scope._expandedMenu.menu = null;
if ($scope._expandedMenu) {
$scope._expandedMenu.menu = null;
}
$scope.$apply()
});
}