From 2608a6897a26928d72049876608d71abf96c99d0 Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Thu, 13 Mar 2025 00:43:43 -0600 Subject: [PATCH] Delete app/destinations/resources/javascript/destinations.js --- .../resources/javascript/destinations.js | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 app/destinations/resources/javascript/destinations.js diff --git a/app/destinations/resources/javascript/destinations.js b/app/destinations/resources/javascript/destinations.js deleted file mode 100644 index 685f97d370..0000000000 --- a/app/destinations/resources/javascript/destinations.js +++ /dev/null @@ -1,16 +0,0 @@ -function get_destinations(id, destination_type, action, search) { - //alert(action); - var xhttp = new XMLHttpRequest(); - xhttp.onreadystatechange = function() { - if (this.readyState == 4 && this.status == 200) { - document.getElementById(id).innerHTML = this.responseText; - } - }; - if (action) { - xhttp.open("GET", "/app/destinations/resources/destinations.php?destination_type="+destination_type+"&action="+action, true); - } - else { - xhttp.open("GET", "/app/destinations/resources/destinations.php?destination_type="+destination_type, true); - } - xhttp.send(); -} \ No newline at end of file