From c80e3ce0055fda53cc6f7b60d50a4917f9e2854e Mon Sep 17 00:00:00 2001 From: Tor Hveem Date: Fri, 28 Feb 2014 01:03:37 +0100 Subject: [PATCH] Fix spaces --- js/glowingbear.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/glowingbear.js b/js/glowingbear.js index 7e29bfb..ec2138b 100644 --- a/js/glowingbear.js +++ b/js/glowingbear.js @@ -449,11 +449,11 @@ function($rootScope, buffer.lastSeen -= oldLength; } // We request more lines, but didn't get more. No more lines! - if(oldLength === newLength) { + if (oldLength === newLength) { $rootScope.noMoreLines = true; } // We requested more lines than we got, no more lines. - if(newLength < numLines) { + if (newLength < numLines) { $rootScope.noMoreLines = true; } $rootScope.loadingLines = false;