mirror of
				https://github.com/cp6/my-idlers.git
				synced 2025-10-31 06:19:09 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
	
		
			733 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
	
		
			733 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <script>
 | |
|     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>
 |