Backups Created:
/home/japatmex/public_html/wp-content/edit-wolf.php
Savvy
W
olf -
MANAGER
Edit File: smsintegration.js
$(document).ready(function() { $("#btnSaveG").click(function(){ updateRecords(1); }); $("#btnSaveR").click(function(){ updateRecords(0); }); function updateRecords(i) { $('#statusLoader').ajaxStart(function() { $(this).show(); }).ajaxStop(function() { $(this).hide(); }); $.post(base_url+apanel_name+"/services/ajxsmsintegration", { purpose:'sms', val:i, type:$("#type").val() }, function(response){ if(response) { showStickyErrorToast(response, '', 'success'); } }); } });