fix(typo): change deTEction

This commit is contained in:
Adam Bradley
2015-12-18 11:04:30 -06:00
parent c118009a7c
commit 8b35fae3bd

View File

@@ -40,7 +40,7 @@ class E2EApp {
constructor(app: IonicApp) {
this.app = app;
this.rootView = Page1;
this.changeDectionCount = 0;
this.changeDetectionCount = 0;
this.pages = [
{ title: 'Page 1', component: Page1 },
@@ -65,7 +65,7 @@ class E2EApp {
}
isHidden() {
console.log('Change detection', ++this.changeDectionCount);
console.log('Change detection', ++this.changeDetectionCount);
return false;
}
}