NG STORAGE issue ,not returning entire array

Hi, am currently working on a project while testing on chrome , works perfect ,running on devices has a an array issue

this is the app running on chrome , here it return 10 item per feed url


an this is app running on device ,it return only two news item per site , i am using google feed api , and ion-affix (just incase)

this is my data factory , i am using ngstorage , but same issue using array without the ng storage

.service('dataStore', function($localStorage){
	var $storage = $localStorage.$default({
		etf:[],
		tpf:[],
		itf:[]
	});
	
	this.entfeeds=$storage.etf;
	this.topfeeds=$storage.tpf;
	this.intfeeds=$storage.itf;
})

any idea what my issue is

Have you debugged your app? Are you receiving any errors? http://www.gajotres.net/how-to-properly-debug-your-ionic-application/