mirror of
https://github.com/cp6/my-idlers.git
synced 2024-11-16 15:33:44 +01:00
Updated delete modal script to load after page loaded
Updated delete modal script to load after page loaded
This commit is contained in:
parent
7a2ed8887f
commit
a9a3bc1ca1
@ -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>
|
||||||
|
Loading…
Reference in New Issue
Block a user