Browse Source

removed debugging comments

pull/33/head
Ben Brewer 11 years ago
parent
commit
999f413b21
  1. 2
      src/echo.js

2
src/echo.js

@ -15,7 +15,6 @@ window.Echo = (function (window, document, undefined) {
var storeLength = store.length; var storeLength = store.length;
if (storeLength > 0) { if (storeLength > 0) {
console.log("Remaining: " + storeLength);
for (var i = storeLength; i--;) { for (var i = storeLength; i--;) {
var self = store[i]; var self = store[i];
if (_inView(self)) { if (_inView(self)) {
@ -30,7 +29,6 @@ window.Echo = (function (window, document, undefined) {
window.detachEvent('onscroll', _throttle); window.detachEvent('onscroll', _throttle);
} }
clearTimeout(poll); clearTimeout(poll);
console.log("done");
} }
}; };

Loading…
Cancel
Save