mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-08 05:54:29 -04:00
Improve spinners between loads
This commit is contained in:
parent
157841da9b
commit
caeed4456b
@ -1,4 +1,4 @@
|
||||
<div class="flex flex-col space-y-4 p-4" x-data="{ isLoading: true }">
|
||||
<div class="flex flex-col space-y-4 p-4" x-data="{ isLoading: @entangle('isLoading') }">
|
||||
|
||||
<div x-show="isLoading" class="flex items-center justify-center min-h-screen">
|
||||
<svg class="animate-spin h-10 w-10 text-gray-500" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24">
|
||||
@ -25,6 +25,10 @@
|
||||
@script
|
||||
<script>
|
||||
|
||||
Livewire.on('loadingCompleted', () => {
|
||||
isLoading = false;
|
||||
});
|
||||
|
||||
const buttons = document.querySelectorAll('.payment-method');
|
||||
|
||||
buttons.forEach(button => {
|
||||
|
Loading…
x
Reference in New Issue
Block a user