|
|
@@ -2845,7 +2845,7 @@ class BootstrapTable {
|
|
|
}
|
|
|
|
|
|
showLoading () {
|
|
|
- this.$tableLoading.css('display', 'flex')
|
|
|
+ this.$tableLoading.toggleClass('open', true)
|
|
|
|
|
|
let fontSize = this.options.loadingFontSize
|
|
|
|
|
|
@@ -2860,7 +2860,7 @@ class BootstrapTable {
|
|
|
}
|
|
|
|
|
|
hideLoading () {
|
|
|
- this.$tableLoading.css('display', 'none')
|
|
|
+ this.$tableLoading.toggleClass('open', false)
|
|
|
}
|
|
|
|
|
|
togglePagination () {
|