mattrc
9/23/2014 - 1:53 PM

gistfile1.js

// Mock fans #todo replace with API call 
var fans = [];

EntitiesFactory.get(16528).then(function (e) {
    for(var x = 0; x < 4; x++) {
        fans.push(e);
    }

    $scope.fans = fans;
});