chore(): remove console.debugs

This commit is contained in:
Adam Bradley
2016-03-31 08:58:08 -05:00
parent ba6f92b992
commit b8cb12e25e
2 changed files with 0 additions and 2 deletions

View File

@ -178,7 +178,6 @@ export class InfiniteScroll {
let distanceFromInfinite = ((d.scrollHeight - infiniteHeight) - d.scrollTop) - reloadY; let distanceFromInfinite = ((d.scrollHeight - infiniteHeight) - d.scrollTop) - reloadY;
if (distanceFromInfinite < 0) { if (distanceFromInfinite < 0) {
this._zone.run(() => { this._zone.run(() => {
console.debug('infinite scroll');
this.state = STATE_LOADING; this.state = STATE_LOADING;
this.infinite.emit(this); this.infinite.emit(this);
}); });

View File

@ -251,7 +251,6 @@ export class Refresher {
// this method can get called like a bazillion times per second, // this method can get called like a bazillion times per second,
// so it's built to be as efficient as possible, and does its // so it's built to be as efficient as possible, and does its
// best to do any DOM read/writes only when absolutely necessary // best to do any DOM read/writes only when absolutely necessary
console.debug('Pull-to-refresh, onMove', ev.type);
// if multitouch then get out immediately // if multitouch then get out immediately
if (ev.touches && ev.touches.length > 1) { if (ev.touches && ev.touches.length > 1) {