Updated delete modal script to load after page loaded

Updated delete modal script to load after page loaded
This commit is contained in:
cp6 2022-11-13 15:46:12 +11:00
parent 7a2ed8887f
commit a9a3bc1ca1

View File

@ -1,19 +1,22 @@
<script> <script>
let app = new Vue({ window.addEventListener('load', function() {
el: "#app", document.getElementById("confirmDeleteModal").classList.remove("d-none");
data: { let app = new Vue({
"modal_hostname": '', el: "#app",
"modal_id": '', data: {
"delete_form_action": '', "modal_hostname": '',
showModal: false "modal_id": '',
}, "delete_form_action": '',
methods: { showModal: false
confirmDeleteModal(event) { },
this.showModal = true; methods: {
this.modal_hostname = event.target.title; confirmDeleteModal(event) {
this.modal_id = event.target.id; this.showModal = true;
this.delete_form_action = '{{$uri}}/' + this.modal_id; this.modal_hostname = event.target.title;
this.modal_id = event.target.id;
this.delete_form_action = '{{$uri}}/' + this.modal_id;
}
} }
} });
}); })
</script> </script>