PluginProbe
MxChat – AI Chatbot & Content Generation for WordPress / 1.0.6
MxChat – AI Chatbot & Content Generation for WordPress v1.0.6
3.2.21 3.2.20 3.2.19 3.2.18 3.2.17 3.2.16 3.2.15 3.2.14 3.2.12 3.2.13 3.2.11 3.2.10 3.2.9 3.2.8 3.2.7 3.2.6 3.2.5 3.2.4 3.2.3 3.2.2 3.2.1 2.0.3 2.0.4 2.0.5 2.0.6 All 152 releases
mxchat-basic / js / embedding-check.js

embedding-check.js in MxChat – AI Chatbot & Content Generation for WordPress 1.0.6, at js/embedding-check.js

26 lines 997 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 document.addEventListener('DOMContentLoaded', function() {
2 var urlParams = new URLSearchParams(window.location.search);
3 if (urlParams.has('embedding_failed')) {
4 alert('Failed to generate embedding for the content. Please try submitting again.');
5 }
6
7 var sitemapForm = document.getElementById('mxchat-sitemap-form');
8 var loadingSpinner = document.getElementById('mxchat-sitemap-loading');
9 var loadingText = document.getElementById('mxchat-loading-text');
10 var sitemapUrlField = document.getElementById('sitemap_url');
11 var submitButton = sitemapForm.querySelector('input[type="submit"]');
12
13 sitemapForm.addEventListener('submit', function() {
14 // Hide the form fields
15 sitemapUrlField.style.display = 'none';
16 submitButton.style.display = 'none';
17
18 // Show the loading spinner and text
19 loadingSpinner.style.display = 'flex';
20 loadingText.style.display = 'block';
21 });
22
23
24
25 });
26