mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-21 04:53:58 +08:00
Merge pull request #8590 from ramonornela/fix_lint_tests
style(nav): fix linters tests missing semicolon and spaces
This commit is contained in:
@ -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() {
|
||||||
|
Reference in New Issue
Block a user