Infinite scroll upward direction

How can I use infinite scroll to load more data in reverse direction?
I want to load data on scroll up instead of scroll bottom.

Missing this too. Any suggestions?

You can check this, pull to refresh page…

http://ionicframework.com/docs/api/directive/ionRefresher/

But then again, it will load your data from below… what you can do… when you push a new object from your array…
use “unshift” instead…

something like this…
$scope.items.unshift($arrayDataObj);

I hope this help…
Cheers.