Content deleted Content added
(via CAE) |
remove titles with / [Factotum] |
||
(3 intermediate revisions by the same user not shown) | |||
Line 2:
function talkbackLink() {
if ($("#mw-content-text").length > 0) {
var $nodeList = $('a[title^="User talk:"]').filter("a:not([title*='\/'])"),
pdne = ' (page does not exist)';
if ($nodeList !== null) {
Line 17:
var newLinkId = "TBsubmit" + i;
newLinkString += '<a href=' + (($link[0].href).replace("User_talk:", "Special:Contributions/")) + ' style="font-size:x-small; display:inline-block;">C</a>|';
newLinkString += '<a style="font-size:x-small; display:inline-block;" title="Send a talkback!" noPopup=1 id="' + newLinkId + '" href= "'+($link[0].href
$($link).after(newLinkString);
$("#" + newLinkId).click({
Line 23:
"redlink": redlink
}, function (event) {
event.preventDefault(); // prevent href being followed
talkbackSubmit(event)
}
}
|