User:Ucucha/duplinks.js: Difference between revisions

Content deleted Content added
exclude any links in infoboxes and navboxes
separate lead
Line 6:
$(portletlink).click( function(e) {
e.preventDefault();
var// seencreate =a {};separate div surrounding the lead
var content = mw.util.$content.children()[2];
$(content).prepend(document.createElement('div'));
var lead = $(content).children()[0];
$(lead).attr('id', 'lead');
$(content).children().each( function() {
if(this.nodeName.toLowerCase() == 'h2') {
return false;
}
if($(this).attr('id') != 'lead') {
$(lead).append(this);
}
return true;
});
// detect duplicate links
mw.util.addCSS(".duplicate-link { border: 1px solid red; }");
mw.util.$content.find('a').not('.infoboxvar *,finddups .navbox= *').each(function() {
var href = $(this).attr('href');
if(href != undefined && href.indexOf('#') != 0) {
if(seen[href]) {
$(this).addClass("duplicate-link");
Line 18 ⟶ 33:
}
}
});
var seen = {};
mw.util.$content.find('a').not('#lead *, .infobox *, .navbox *').each(finddups);
var seen = {};
mw.util.$content.find('#lead a').not('.infobox *, .navbox *').each(finddups);
});
});