I have two Angular controllers:
function Ctrl1($scope) { $scope.prop1 = \"First\"; } function Ctrl2($scope) { $scope.prop2 = \"Second\"; $scope.
Couldn't you also make the property part of the scopes parent?
$scope.$parent.property = somevalue;
I'm not saying it's right but it works.