Skip to content
This repository was archived by the owner on May 16, 2019. It is now read-only.

Commit 22ed806

Browse files
committed
pass in start parameter
- warning, this fails with the current lazy load server branch, the API doesn't seem to be ready yet
1 parent 27adfff commit 22ed806

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

js/templates/userPage.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -250,18 +250,18 @@ <h1 class="page-userNameLarge floatLeft fancy-heading fontSize20 colorWhiteForce
250250
<a class="btn btn-bar btn-tab custCol-secondary js-followingTab js-tab paddingRight18">
251251
<span class="ion-person fontSize11 marginRight2 textOpacity"></span>
252252
<%= polyglot.t('Following') %>
253-
<span class="pill fontSize12 textOpacity75 marginLeft2 js-userFollowingCount">0</span>
253+
<span class="pill fontSize12 textOpacity75 marginLeft2 js-userFollowingCount">...</span>
254254
</a>
255255
<a class="btn btn-bar btn-tab custCol-secondary js-followersTab js-tab paddingRight18">
256256
<span class="ion-person-stalker fontSize11 marginRight2 textOpacity1"></span>
257257
<%= polyglot.t('Followers') %>
258-
<span class="pill fontSize12 textOpacity75 marginLeft2 js-userFollowerCount">0</span>
258+
<span class="pill fontSize12 textOpacity75 marginLeft2 js-userFollowerCount">...</span>
259259
</a>
260260
<% if(ob.page.profile.vendor) { %>
261261
<a class="btn btn-bar btn-tab custCol-secondary js-storeTab js-tab paddingRight18">
262262
<span class="ion-ios-cart fontSize11 marginRight2 textOpacity1"></span>
263263
<%= polyglot.t('Store') %>
264-
<span class="pill fontSize12 textOpacity75 marginLeft2 js-listingCount">0</span>
264+
<span class="pill fontSize12 textOpacity75 marginLeft2 js-listingCount">...</span>
265265
<% } %>
266266
</a>
267267
</div>

js/views/userPageVw.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -280,6 +280,7 @@ module.exports = baseVw.extend({
280280
} else {
281281
this.options.ownPage = false;
282282
this.userProfileFetchParameters = $.param({'guid': this.pageID});
283+
//this.userProfileFetchParameters = $.param({'guid': this.pageID, 'start': 0});
283284
}
284285

285286
this.userProfileFetch = this.userProfile.fetch({

0 commit comments

Comments
 (0)