docs(demos): always use arrow functions

Closes #459
This commit is contained in:
Drew Rygh
2015-11-12 14:32:38 -06:00
parent 24d823ab5f
commit 1dd2079809
4 changed files with 16 additions and 16 deletions

View File

@ -13,7 +13,7 @@ import * as helpers from '../../helpers';
'</ion-content>',
directives: [forwardRef(() => helpers.AndroidAttribute)],
})
class TabTextCtrl {
class TabTextPage {
constructor() {
}
}
@ -28,8 +28,8 @@ class TabTextCtrl {
})
export class BasicPage {
constructor() {
this.tabOne = TabTextCtrl;
this.tabTwo = TabTextCtrl;
this.tabThree = TabTextCtrl;
this.tabOne = TabTextPage;
this.tabTwo = TabTextPage;
this.tabThree = TabTextPage;
}
}