Commit a1781c30b18443cf37278300c2b15819f05a9042
1 parent
20d4fd30
Exists in
master
and in
2 other branches
change limit to per_page
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
www/js/controllers.js
... | ... | @@ -446,7 +446,7 @@ angular.module('confjuvapp.controllers', []) |
446 | 446 | perPage = 11; |
447 | 447 | } |
448 | 448 | |
449 | - var params = '?private_token=' + token + '&fields=title,image,body,abstract,id,tag_list,categories,created_by&content_type=ProposalsDiscussionPlugin::Proposal&limit=' + perPage + '&oldest=younger_than&reference_id=' + topic.lastProposalId + $scope.proposalsFilter; | |
449 | + var params = '?private_token=' + token + '&fields=title,image,body,abstract,id,tag_list,categories,created_by&content_type=ProposalsDiscussionPlugin::Proposal&per_page=' + perPage + '&oldest=younger_than&reference_id=' + topic.lastProposalId + $scope.proposalsFilter; | |
450 | 450 | |
451 | 451 | var path = 'articles/' + topic.id + '/children' + params; |
452 | 452 | ... | ... |