I am developing an Android application and I am using a framework called the "Ionic Framework". Here is my problem, I have to create a system with an infinite scroll system of the ion-infin-scroll system.
When I ran tests on Chrome on my computer, I have ion-infin-scroll , which does not stop, despite my position on the page.
How to place my code for the system to work? thank
Controller
$scope.loadMore = function(){
console.log("LoadMOre");
imageCache.init().then(function() {
BonjourTwitterRepository.populate($scope);
});
$scope.$broadcast('scroll.infiniteScrollComplete');
$scope.$broadcast('scroll.resize');
console.log($scope.tweetsList);
if(false){
console.log("ok");
$scope.noMoreItemsAvailable = true;
}
$scope.currentIndex = $scope.currentIndex + $scope.perPage;
};
Repository
var populateCollection = function (tweets, $scope) {
collection = new TweetCollection();
console.log($scope.currentIndex);
for (var i = $scope.currentIndex; i < $scope.perPage; i++) {
collection.addTweets(new Tweet(tweets[i], $scope, imageCache));
}
$scope.tweetsList = collection;
};
View
<ion-item class="item item-body">
<div class="item item-image">
<img ng-src="{{tweet.media_url}}" src="img/loading1.gif"/>
</div>
<p>
by : <a href="https//twitter.com/{{tweet.getUsername()}}">@{{tweet.getUsername()}}</a>
</p>
</ion-item>
<div class="item tabs tabs-secondary tabs-icon-left">
<p>
<a href="#" class="rating-poll"><i class="icon-thumbs-up"></i></a>
<a href="#" class="rating-poll"><i class="icon-thumbs-down"></i></a>
</p>
<p>
<button ng-click="shareThis('{{tweet.media_url}}')" class="button icon button-clear "><i
class="icon ion-share"></i>Share
</button>
</p>
</div>
</ion-list>
<ion-infinite-scroll></ion-infinite-scroll>
source
share