I have this:
app.controller(\'foo1\', function ($scope) { $scope.bar = \'foo\'; }); app.controller(\'foo2\', function ($scope) { // want to access the $s
You just can use $emit/$broadcast for translate changes of data from one controller scope to another. Or just store these variables on $rootScope.