From 999f413b219fdb05cdbcb40e1a12e4a5c55f572e Mon Sep 17 00:00:00 2001 From: Ben Brewer Date: Tue, 21 Jan 2014 10:49:21 -0800 Subject: [PATCH] removed debugging comments --- src/echo.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/echo.js b/src/echo.js index 684dc6e..07a40f1 100644 --- a/src/echo.js +++ b/src/echo.js @@ -15,7 +15,6 @@ window.Echo = (function (window, document, undefined) { var storeLength = store.length; if (storeLength > 0) { - console.log("Remaining: " + storeLength); for (var i = storeLength; i--;) { var self = store[i]; if (_inView(self)) { @@ -30,7 +29,6 @@ window.Echo = (function (window, document, undefined) { window.detachEvent('onscroll', _throttle); } clearTimeout(poll); - console.log("done"); } };