Content deleted Content added
No edit summary |
No edit summary |
||
Line 4:
let titles = [];
let finalTitle;
$(links).each(function() {▼
titles.push($(this).attr("href").replace(wikiSlash, ''));▼
finalTitle = titles.join("|");▼
});▼
$.ajax({
dataType: 'jsonp',
Line 10 ⟶ 14:
});
▲ $(links).each(function() {
▲ titles.push($(this).attr("href").replace(wikiSlash, ''));
▲ finalTitle = titles.join("|");
▲ });
});
|