style(nav): fix linters tests missing semicolon and spaces

This commit is contained in:
ramonornela
2016-10-09 17:42:24 -03:00
parent 69877238fa
commit 96838b9904

View File

@ -50,19 +50,19 @@ export class SecondPage {
index: this._index++ index: this._index++
}).then(() => { }).then(() => {
console.log('INSERTED! Stack:\n', this.navCtrl.getViews()); console.log('INSERTED! Stack:\n', this.navCtrl.getViews());
}) });
} }
removePage() { removePage() {
this.navCtrl.remove(1, 1).then(() => { this.navCtrl.remove(1, 1).then(() => {
console.log('REMOVED! Stack:\n', this.navCtrl.getViews()) console.log('REMOVED! Stack:\n', this.navCtrl.getViews());
}) });
} }
removeTwoPages() { removeTwoPages() {
this.navCtrl.remove(this.navCtrl.length() - 2, 2).then(() => { this.navCtrl.remove(this.navCtrl.length() - 2, 2).then(() => {
console.log('REMOVED TWO! Stack:\n', this.navCtrl.getViews()) console.log('REMOVED TWO! Stack:\n', this.navCtrl.getViews());
}) });
} }
testThing() { testThing() {