Difference between revisions of "MediaWiki:Gadget-edittop.js"
From Department of Theoretical and Applied Mechanics
(Created page with "// ********************************************************************** // ** ***WARNING GLOBAL GADGET FILE*** ** // ** changes t...") |
(No difference)
|
Latest revision as of 12:04, 12 February 2015
// **********************************************************************
// ** ***WARNING GLOBAL GADGET FILE*** **
// ** changes to this file affect many users. **
// ** please discuss on the talk page before editing **
// ** **
// **********************************************************************
// Imported from [[User:Alex Smotrov/edittop.js]], version as of: 2007-06-19T04:28:52
// Updated from [[User:TheDJ/Gadget-edittop.js]], version as of: 2009-04-28T11:54:22
// Imported from https://en.wikipedia.org/w/index.php?title=MediaWiki:Gadget-edittop.js&oldid=595448628 on 2014-May-20T21:44:00
if ($.inArray( mw.config.get('wgAction'), [ 'view', 'purge' ]) !== -1 && mw.config.get( 'wgNamespaceNumber' ) >=0) {
$(function edittop_hook () {
var localtitles = {
cs: 'Editovat uvodni sekci',
en: 'Edit lead section',
fa: '?????? ??? ??????',
fr: 'Modifier le resume introductif',
id: 'Sunting bagian atas',
it: 'Modifica della sezione iniziale',
ja: '??????',
min: 'Suntiang bagian ateh',
ko: '???? ??',
pa: '???',
pt: 'Editar a secao superior',
'pt-br': 'Editar a secao superior',
sr: '”реди уводни део',
vi: 'S?a ph?n m? d?u'
};
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();
if ( mw.user.options.get( 'gadget-righteditlinks' ) == 1 ) {
var editwidth = span1.outerWidth() + (mw.config.get("skin") == "monobook" ? 10 : 0);
$("div.topicon, #mw-fr-revisiontag").css("margin-right", editwidth + "px");
}
$("#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.en);
if (a.attr("href").indexOf("§ion=T") == -1) {
a.attr("href", a.attr("href").replace(/§ion=\d+/, "§ion=0&summary=/*%20top%20*/%20"));
}
else { //transcluded
a.attr("href", mw.util.getUrl( mw.config.get( 'wgPageName' ) ) + "?action=edit§ion=0&summary=/*%20top%20*/%20");
}
});
});
}