/** * Top 10 - WordPress Popular Posts Importer * * JavaScript for handling the WordPress Popular Posts import process. * * @package Top_Ten * @subpackage Admin/JS */ /* global topTenWPPImporter */ jQuery(document).ready(function ($) { 'use strict'; // Track if the import has been cancelled var importCancelled = false; /** * Escape HTML to prevent XSS attacks * * @param {string} unsafeText The unsafe text * @return {string} Escaped text */ function escapeHTML(unsafeText) { return $('
').text(unsafeText).html(); } // Handle form submission. $('#top-ten-wpp-import-form').on('submit', function (e) { e.preventDefault(); // Confirm before proceeding. if (!confirm(topTenWPPImporter.strings.confirm)) { return; } var $form = $(this); var $submit = $('#top-ten-wpp-import-submit'); var $progress = $('#top-ten-wpp-import-progress'); var $results = $('#top-ten-wpp-import-results'); // Create cancel button if it doesn't exist var $cancelBtn = $('#top-ten-wpp-import-cancel'); if ($cancelBtn.length === 0) { $cancelBtn = $('