Skip to content

Commit

Permalink
Fix messages page size
Browse files Browse the repository at this point in the history
  • Loading branch information
ayakimov committed Jun 19, 2017
1 parent a3fc1ce commit 8de0435
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lathermail/web/static/js/lathermail.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ lathermailApp.controller('lathermailCtrl', function ($scope, $http, $routeParams
$scope.messages = null;
$scope.selectedMessage = null;
$scope.offset = 0;
$scope.offsetStep = 2;
$scope.offsetStep = 10;

$scope.refreshMessages = function (isInboxChanged) {
if (isInboxChanged) {$scope.offset = 0}
Expand Down

0 comments on commit 8de0435

Please sign in to comment.