مدیاویکی:Mobile.js: تفاوت میان نسخه‌ها

از امامت‌پدیا، دانشنامهٔ امامت و ولایت
جزبدون خلاصۀ ویرایش
جزبدون خلاصۀ ویرایش
 
خط ۱: خط ۱:
/* Any JavaScript here will be loaded for users using the mobile site */
/* Any JavaScript here will be loaded for users using the mobile site */
//Help Abuse Filter #106 to tag Recreated Pages which have delete log
//Help Abuse Filter #106 to tag Recreated Pages which have delete log
$(function () {
if ($('.mw-warning-with-logexcerpt .mw-logline-delete').length !== 0) {
function checkAndSetHook() {
if ($('button[class="continue"]').length !== 0) {
$('button[class="continue"]').click(function () { $('#wikitext-editor').val($('#wikitext-editor').val() + "‌‌‌‌"); });
} else {
setTimeout(checkAndSetHook, 2000);
}
};
checkAndSetHook();
}
});


/* Restore collapsible elements by loading the jQuery module for them. */
/* Restore collapsible elements by loading the jQuery module for them. */

نسخهٔ کنونی تا ‏۱۲ ژانویهٔ ۲۰۲۲، ساعت ۲۰:۲۱

/* Any JavaScript here will be loaded for users using the mobile site */
//Help Abuse Filter #106 to tag Recreated Pages which have delete log

/* Restore collapsible elements by loading the jQuery module for them. */

$( function (mw, $) {
	'use strict';

	mw.loader.using('jquery.makeCollapsible', function ( ) {
		$( '.mw-collapsible' ).makeCollapsible ( );
	} );
} (mediaWiki, jQuery) );