fix(ion-infinite-scroll): Fix error leaving page

This fix [5760](https://github.com/driftyco/ionic/issues/5760)
This commit is contained in:
Trong Tran
2016-03-24 18:32:22 +07:00
parent 349c577cb9
commit 05823f9e62

View File

@ -162,6 +162,7 @@ export class Content extends Ion {
this.scrollElement.addEventListener(type, handler);
return () => {
if (!this.scrollElement) { return; }
this.scrollElement.removeEventListener(type, handler);
}
}