Fix spaces
This commit is contained in:
parent
ad68e32c08
commit
c80e3ce005
1 changed files with 2 additions and 2 deletions
|
@ -449,11 +449,11 @@ function($rootScope,
|
||||||
buffer.lastSeen -= oldLength;
|
buffer.lastSeen -= oldLength;
|
||||||
}
|
}
|
||||||
// We request more lines, but didn't get more. No more lines!
|
// We request more lines, but didn't get more. No more lines!
|
||||||
if(oldLength === newLength) {
|
if (oldLength === newLength) {
|
||||||
$rootScope.noMoreLines = true;
|
$rootScope.noMoreLines = true;
|
||||||
}
|
}
|
||||||
// We requested more lines than we got, no more lines.
|
// We requested more lines than we got, no more lines.
|
||||||
if(newLength < numLines) {
|
if (newLength < numLines) {
|
||||||
$rootScope.noMoreLines = true;
|
$rootScope.noMoreLines = true;
|
||||||
}
|
}
|
||||||
$rootScope.loadingLines = false;
|
$rootScope.loadingLines = false;
|
||||||
|
|
Loading…
Reference in a new issue