Eu tenho dois controladores angulares: function Ctrl1($scope) { $scope.prop1 = "First"; } function Ctrl2($scope) { $scope.prop2 = "Second"; $scope.both = Ctrl1.prop1 + $scope.prop2; //This is what I would like to do ideally } Não posso usar por Ctrl1dentro Ctrl2porque é indefinido. No...