Diferencia entre revisiones de «Usuario:JimTittsler/vector.js»
De WikiEducator
(trigger gardening tools on some pages) |
(copy updated User:JimTittsler/vector.js from en.WE after MW 1.23 update) |
||
(Una revisión intermedia por el mismo usuario no mostrado) | |||
Línea 2: | Línea 2: | ||
$(function () { | $(function () { | ||
+ | $('#n-recentchanges').find('a:first').attr('href', '/index.php?title=Special:RecentChanges&hidebots=0'); | ||
$('#n-recentchanges').after('<li><a href="/Special:NewPages?namespace=all" title="The list of newly created pages">New pages</a></li>'); | $('#n-recentchanges').after('<li><a href="/Special:NewPages?namespace=all" title="The list of newly created pages">New pages</a></li>'); | ||
− | $('#pt-mytalk') | + | var st = $('#pt-mytalk').attr('style'); |
− | + | st = st ? ' style="' + st + '"': ''; | |
− | + | ||
− | + | ||
// gardening tool | // gardening tool | ||
− | if (wgPageName | + | if ($.inArray(wgPageName, ['Special:NewPages', 'Special:RecentChanges']) > -1) { |
− | $.getScript('/ | + | $.getScript('/extensions/WE/spam.js'); |
} | } | ||
if (wgAction === 'history') { | if (wgAction === 'history') { | ||
− | $.getScript('/ | + | $.getScript('/extensions/WE/deleterevs.js'); |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
} | } | ||
+ | $('#p-coll-create_a_book li a[href*="add_article"]').parent() | ||
+ | .after('<li><a id="t-bookmaker" title="Add the current page and its subpages" rel="nofollow" href="#">Add page & subpages</a></li>'); | ||
}); | }); |
Revisión de 21:32 2 sep 2014
importScript('User:JimTittsler/googlesearch.js'); $(function () { $('#n-recentchanges').find('a:first').attr('href', '/index.php?title=Special:RecentChanges&hidebots=0'); $('#n-recentchanges').after('<li><a href="/Special:NewPages?namespace=all" title="The list of newly created pages">New pages</a></li>'); var st = $('#pt-mytalk').attr('style'); st = st ? ' style="' + st + '"': ''; // gardening tool if ($.inArray(wgPageName, ['Special:NewPages', 'Special:RecentChanges']) > -1) { $.getScript('/extensions/WE/spam.js'); } if (wgAction === 'history') { $.getScript('/extensions/WE/deleterevs.js'); } $('#p-coll-create_a_book li a[href*="add_article"]').parent() .after('<li><a id="t-bookmaker" title="Add the current page and its subpages" rel="nofollow" href="#">Add page & subpages</a></li>'); });