Update infiniteScroll Example

Add Sample of Automatically Loading First Set of Data.  Since the new `ion-infinite-scroll` does not automatically load data, devs need to see how to kick it off the first time.
This commit is contained in:
Justin Noel
2014-04-19 08:50:21 -05:00
parent 2a6f702980
commit e63cfcefe0

View File

@@ -36,6 +36,10 @@
* $scope.$broadcast('scroll.infiniteScrollComplete');
* });
* };
*
* $scope.$on('stateChangeSuccess', function() {
* $scope.loadMore();
* });
* }
* ```
*