Hytale Wiki
m (1 revision imported: Import purge confirmation removal gadget)
 
Nixinova (diskuse | příspěvky)
m (naimportována 1 revize: Import gadget scripts/styles)
 
(Žádný rozdíl)

Aktuální verze z 27. 12. 2019, 20:51

// jshint jquery:true, esversion:5
/* globals require, module, mediaWiki, mw, OO */
// Make the purge tab work as it used to without a confirmation page by
// sending it using POST
'use strict';

$( '#ca-purge a' ).on( 'click', function( e ) {
	var $form = $( '<form>' ).attr( {
		method: 'POST',
		action: this.href,
	} ).appendTo( document.body );
	
	$form.submit();
	
	e.preventDefault();
} );