blob: ae18a89b0b435bce7e88fb5e33c972c687d1fa09 (
plain)
1
2
3
4
5
6
7
8
9
|
(function() {
fs.data = {};
fs.data.friends = Array();
fs.data.likeIDs = Array();
fs.data.reverseChronoLikedIDs = Array();
fs.data.numLikesFetched = 0;
fs.data.NUM_LIKES_PER_FETCH = 20;
fs.data.isQueryingMore = false;
})();
|