Merge pull request #259 from lorenzhs/fetchlinefix

Fix the one-line-only-bug
This commit is contained in:
David Cormier 2014-04-20 17:37:09 -04:00
commit a1334abb23
1 changed files with 4 additions and 0 deletions

View File

@ -419,6 +419,10 @@ function($rootScope,
var fetchMoreLines = function(numLines) {
var buffer = models.getActiveBuffer();
if (numLines === undefined) {
// Math.max(undefined, *) = NaN -> need a number here
numLines = 0;
}
// Calculate number of lines to fetch, at least as many as the parameter
numLines = Math.max(numLines, buffer.requestedLines * 2);