refactor(toast): remove showCloseButton and closeButtonText (#18957)

* Remove close button

* update tests

* update tests

* add build
This commit is contained in:
Liam DeBeasi
2019-08-20 10:03:18 -04:00
committed by Brandy Carney
parent f742dc5519
commit d6c20a9dec
10 changed files with 32 additions and 88 deletions

View File

@ -112,9 +112,8 @@
toast() {
this.$ionic.toastController.create({
message: 'Here\'s to IonicVue!',
showCloseButton: true,
buttons: ['Done'],
position: 'top',
closeButtonText: 'Done'
})
.then(t => t.present())
},