Documentation may be created at User:Hatsuki kiri/common.js/doc.
Note: After saving, you have to bypass your browser's cache to see the changes.
Google Chrome, Firefox, Microsoft Edge, and Safari: Hold down the ⇧ Shift key and click the Reload toolbar button.
For details and instructions about other browsers, see Wikipedia:Bypass your cache.
// InPageEdit
var MyInPageEditPreference = {"outSideClose":false,"editMinor":false,"editSummary":""};
mw.loader.load('https://cdn.jsdelivr.net/gh/dragon-fish/inpageedit-v2@master/script.min.js');
// HotCat
window.hotcat_translations_from_commons = true;
mw.loader.load('https://commons.wikimedia.org/w/index.php?title=MediaWiki:Gadget-HotCat.js&action=raw&ctype=text/javascript');
// Imported from [[wikipedia:MediaWiki:Gadget-edittop.js]] as was 675636814.
if ($.inArray( mw.config.get('wgAction'), [ 'view', 'purge' ]) !== -1 && mw.config.get( 'wgNamespaceNumber' ) >=0) {
$(function edittop_hook () {
var localtitles = {
en: 'Edit lead section',
zh: '编辑首段'
};
var our_content = $("#content, #mw_content").first();
var span1 = our_content.find("span.mw-editsection:not(.plainlinks)").first();
if (!span1.length) {
return;
}
var span0 = span1.clone();
$("#mw_header h1, #content h1").first().append(span0);
span0.find("a").each(function (idx) {
var a = $(this);
a.attr("title", localtitles[mw.config.get( 'wgUserLanguage' )] || localtitles.zh);
if ( !/&(ve|)section=T/.test( a.attr( "href" ) ) ) { // not transcluded
a.attr( "href", a.attr( "href" ).replace( /&(ve|)section=\d+/, "&$1section=0&summary=/*%20Introduction%20*/%20" ) );
} else if ( /&vesection=/.test( a.attr( "href" ) ) ) { // transcluded, VE
a.attr( "href", mw.util.getUrl( mw.config.get( 'wgPageName' ) ) + "?veaction=edit&vesection=0&summary=/*%20Introduction%20*/%20" );
} else { // transcluded, not VE
a.attr( "href", mw.util.getUrl( mw.config.get( 'wgPageName' ) ) + "?action=edit§ion=0&summary=/*%20Introduction%20*/%20" );
}
});
});
}