📁
SKYSHELL MANAGER
PHP v8.2.31
Create
Create
Path:
root
/
home
/
thevaxnx
/
nativize.com
/
staging
/
wp-includes
/
js
/
tinymce
/
themes
/
Name
Size
Perm
Actions
📁
inlite
-
0755
🗑️
🏷️
🔒
📁
modern
-
0755
🗑️
🏷️
🔒
📄
wp-links-opml.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
Edit: gencrt.js
(function() { // Imports var DOM = YAHOO.util.Dom; var EVENT = YAHOO.util.Event; /** * Toggle the display property to alternatively show/hide the element * @method toggleDisplay * @param {HTMLElement} el element to toggle */ var toggleDisplay = function(el) { if (!el) { return; } if (DOM.getStyle(el, "display") === "none") { DOM.setStyle(el, "display", "block"); } else { DOM.setStyle(el, "display", "none"); } }; /** * Initialize the page validation * @method initialize */ var initialize = function() { // Setup the events on the page. var detailsEl = DOM.get("details"); EVENT.on("gen_error_more", "click", function(e) { toggleDisplay(detailsEl); }); // Set the focus to the CSR since they likely need to copy it. var encodedCRTEl = DOM.get("encoded-crt"); if (encodedCRTEl) { encodedCRTEl.focus(); } }; // Register startup events. YAHOO.util.Event.onDOMReady(initialize); }());
Save