Сообщение от destus
|
kingstakh,
Ну и return поставьте перед $http.get
|
так есть вроде ...
Сообщение от destus
|
kingstakh,
где внешний код, который вызывает метод all?
|
В контроллере
.controller('productsCtrl', function ($scope, catgs, $ionicSlideBoxDelegate, $window, $ionicGesture) {
//this array control the loading of pages so if the corresponding key of a slide is 'true', angular can load it's content'
$scope.ready = [];
$scope.catgs = catgs.all();
$scope.$on("$ionicView.afterEnter", function (event, data) {
angular.forEach($scope.catgs, function (value, key)
{
if(key===0)
{
$scope.ready.push(0 + ': ' + true);
}
$scope.ready.push(key + ': ' + false);
});
});
$scope.changeSlide = function (index)
{
$scope.ready.push(index + ': ' + true);
};
})