mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-22 05:21:52 +08:00
chore(): remove console.debugs
This commit is contained in:
@ -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);
|
||||||
});
|
});
|
||||||
|
@ -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) {
|
||||||
|
Reference in New Issue
Block a user