Changeset 12033
- Timestamp:
- 05/01/2018 08:38:21 PM (7 years ago)
- Location:
- trunk/src/bp-templates/bp-nouveau
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-templates/bp-nouveau/buddypress/activity/activity-loop.php
r11861 r12033 8 8 <?php if ( bp_has_activities( bp_ajax_querystring( 'activity' ) ) ) : ?> 9 9 10 <ul class="activity-list item-list bp-list" > 10 <?php if ( empty( $_POST['page'] ) || 1 === (int) $_POST['page'] ) : ?> 11 <ul class="activity-list item-list bp-list"> 12 <?php endif; ?> 11 13 12 14 <?php … … 27 29 <?php endif; ?> 28 30 29 </ul> 31 <?php if ( empty( $_POST['page'] ) || 1 === (int) $_POST['page'] ) : ?> 32 </ul> 33 <?php endif; ?> 30 34 31 35 <?php else : ?> -
trunk/src/bp-templates/bp-nouveau/js/buddypress-activity.js
r12016 r12033 297 297 page : next_page, 298 298 method : 'append', 299 exclude_just_posted : this.just_posted.join( ',' ) 299 exclude_just_posted : this.just_posted.join( ',' ), 300 target : '#buddypress [data-bp-list] ul.bp-list' 300 301 } ).done( function( response ) { 301 302 if ( true === response.success ) {
Note: See TracChangeset
for help on using the changeset viewer.