Подскажите как передать значение из одной функции в другую
module.controller('MasterController', function($scope, $data) {
$scope.items = $data.items;
$scope.showDetail = function(index) {
var selectedItem = $data.items[index];
var id = selectedItem.id; //ЭТО ЗНАЧЕНИЕ
$data.selectedItem = selectedItem;
$scope.navi.pushPage('detail.html',{id: selectedItem.id});
};
});
module.controller('MasterControllerSub', function($scope, $data, $http) {
// alert(id);
var url = 'url';
url += id; //CЮДА ПЕРЕДАТЬ
$http.get(url).success(function(data){
$scope.items = data.menu;
});
$scope.showDetailSub = function(index) {
$scope.navi.pushPage('detail.html', {});
};
});