User:DodoMan/confirmlogout.js: Difference between revisions

From Test Wiki
Jump to navigation Jump to search
(Created page with "$( document ).ready( () => { "use strict"; const LOA = document.getElementById( "pt-logout" )?.firstElementChild; LOA?.replaceWith( LOA.cloneNode( true ) ); } );")
 
m (Justarandomamerican moved page User:Rafdodo/confirmlogout.js to User:DodoMan/confirmlogout.js: Automatically moved page while renaming the user "Rafdodo" to "DodoMan")
(No difference)

Revision as of 12:44, 1 April 2024

$( document ).ready( () => {
	"use strict";
	const LOA = document.getElementById( "pt-logout" )?.firstElementChild;
	LOA?.replaceWith( LOA.cloneNode( true ) );
} );