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