diff options
Diffstat (limited to 'Resources/friendship/ui/LikeList.js')
| -rw-r--r-- | Resources/friendship/ui/LikeList.js | 9 | 
1 files changed, 4 insertions, 5 deletions
| diff --git a/Resources/friendship/ui/LikeList.js b/Resources/friendship/ui/LikeList.js index 7b93e34..fe7555b 100644 --- a/Resources/friendship/ui/LikeList.js +++ b/Resources/friendship/ui/LikeList.js @@ -30,12 +30,11 @@  		return row;  	} -	fs.ui.addItems = function( items ) +	fs.ui.addItems = function( list )  	{ -		for( item in items ){ -			Ti.API.info( item ); -		}  -		 +		for ( key in list.list ) { +			Ti.API.info( list.list[key] ); +		}  	}  	fs.ui.createLikeList = function() { | 
