mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 06:21:44 +01:00
potentially fixes #5203
This commit is contained in:
parent
88c66f30f2
commit
82586590a7
1 changed files with 4 additions and 1 deletions
|
@ -160,7 +160,10 @@ document.addEventListener("DOMContentLoaded",function () {
|
|||
}
|
||||
},
|
||||
mounted() {
|
||||
this.$cart = new bootstrap.Offcanvas(this.$refs.cart, {backdrop: false})
|
||||
const self =this;
|
||||
nextTick(() => {
|
||||
self.$cart = new bootstrap.Offcanvas("#cart", {backdrop: false})
|
||||
})
|
||||
window.addEventListener('pagehide', () => {
|
||||
if (this.payButtonLoading) {
|
||||
this.unsetPayButtonLoading();
|
||||
|
|
Loading…
Add table
Reference in a new issue