PluginProbe ʕ •ᴥ•ʔ
Check & Log Email – Easy Email Testing & Mail logging / 2.0.15
Check & Log Email – Easy Email Testing & Mail logging v2.0.15
2.0.15 1.0.4 1.0.5 1.0.6 1.0.7 1.0.8 1.0.9 2.0 2.0.1 2.0.10 2.0.11 2.0.12 2.0.13 2.0.13.1 2.0.13.2 2.0.14 2.0.2 2.0.3 2.0.4 2.0.5 2.0.5.1 2.0.6 2.0.7 2.0.8 2.0.9 trunk 0.5.7 0.6.0 0.6.1 0.6.2 1.0.0 1.0.1 1.0.10 1.0.11 1.0.12 1.0.12.1 1.0.13 1.0.13.1 1.0.2 1.0.3
check-email / assets / js / admin / check_mail_wizard.min.js
check-email / assets / js / admin Last commit date
chart.js 1 week ago check-mail-jsPdf.js 1 week ago check_mail_push.js 1 week ago check_mail_wizard.js 1 week ago check_mail_wizard.min.js 1 week ago checkemail.js 1 week ago checkemail.min.js 1 week ago checkmail-dashboard-chart.js 1 week ago checkmail-dashboard-chart.min.js 1 week ago checkmail-sw.js 1 week ago ck_mail-newsletter-script.js 1 week ago ck_mail-newsletter-script.min.js 1 week ago export-logs.js 1 week ago export-logs.min.js 1 week ago feedback.js 1 week ago feedback.min.js 1 week ago firebase-app.js 1 week ago firebase-messaging.js 1 week ago support-settings.js 1 week ago support-settings.min.js 1 week ago view-logs.js 1 week ago view-logs.min.js 1 week ago
check_mail_wizard.min.js
8 lines
1 let currentStep=1;var steps=ck_mail_wizard_data.steps;const ck_mail_security_nonce=ck_mail_wizard_data.ck_mail_security_nonce;function cm_showStep(e){let t=document.getElementById("step-content"),n=document.querySelectorAll(".cm_progress div");n.forEach((t,n)=>{n<e?t.classList.add("active"):t.classList.remove("active")}),t.innerHTML=`
2 <div class="cm_step">${steps[e-1].title}</div>
3 <h2 class="cm_H2">${steps[e-1].heading}</h2>
4 <div><form id="cm_step_form">
5 <input type="hidden" name="action" value="check_mail_save_wizard_data" />
6 <input type="hidden" name="ck_mail_security_nonce" value="${ck_mail_security_nonce}">
7 ${steps[e-1].content}</form></div>
8 `,document.getElementById("cm_prevBtn").style.visibility=1===e?"hidden":"visible",document.getElementById("cm_nextBtn").innerText=e===steps.length?"Finish":"Save and Continue →"}function cm_nextStep(){currentStep<steps.length?(document.getElementById("cm-container-loader").style.display="block",currentStep++,cm_save_wizard(),cm_showStep(currentStep)):cm_save_wizard()}function cm_prevStep(){currentStep>1&&cm_showStep(--currentStep)}function cm_save_wizard(){var e=jQuery("body").find("#cm_nextBtn"),t=jQuery("body").find("#cm_step_form").serialize();jQuery.ajax({url:ajaxurl,method:"post",dataType:"json",data:t,beforeSend:function(t){e.prop("disabled",!0)},success:function(e){200==e.status?(steps=e.steps_data,"last"==e.step&&(window.location="admin.php?page=check-email-logs")):console.log("something went wrong")},complete:function(t){document.getElementById("cm-container-loader").style.display="none",e.prop("disabled",!1)}})}document.addEventListener("DOMContentLoaded",function(){cm_showStep(currentStep)});