Lines Matching full:checks
44 <h2>Status Checks</h2>
45 <div id="status-checks"></div>
62 <li><strong>Check Status</strong>: Look at the status checks above</li>
117 <!-- Status checks -->
120 var statusDiv = document.getElementById('status-checks');
121 var checks = [];
125 checks.push('<p class="success">✓ MYSHORTCUTS_CONFIG is defined</p>');
128 checks.push('<p class="error">✗ MYSHORTCUTS_CONFIG is NOT defined</p>');
134 checks.push('<p class="success">✓ MyShortcutsPlugin object exists</p>');
137 checks.push('<p class="error">✗ MyShortcutsPlugin object NOT found</p>');
144 checks.push('<p class="success">✓ Editor textarea found (#wiki__text)</p>');
147 checks.push('<p class="error">✗ Editor textarea NOT found</p>');
151 statusDiv.innerHTML = checks.join('');
154 // Run checks after a short delay
157 debugLog('Status checks scheduled', 'info');