MediaWiki:Common.js: Difference between revisions
Appearance
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
$(function () { | $(function () { | ||
console.log('[ReportAbuseLink] Running...'); | |||
var menuList = document.querySelector('#p-personal ul.vector-menu-content-list'); | |||
if (!menuList) { | |||
console.log('[ReportAbuseLink] Personal tools menu not found.'); | |||
return; | |||
} | |||
// Create new list item | |||
var li = document.createElement('li'); | |||
li.id = 'pt-reportabuse'; | |||
var a = document.createElement('a'); | |||
a.href = mw.util.getUrl('Report_Animal_Abuse'); | |||
a.textContent = '🐾 Report Abuse'; | |||
a.style.color = 'red'; | |||
a.style.fontWeight = 'bold'; | |||
li.appendChild(a); | |||
menuList.appendChild(li); | |||
console.log('[ReportAbuseLink] Link inserted.'); | |||
}); | }); |
Revision as of 05:27, 21 April 2025
$(function () { console.log('[ReportAbuseLink] Running...'); var menuList = document.querySelector('#p-personal ul.vector-menu-content-list'); if (!menuList) { console.log('[ReportAbuseLink] Personal tools menu not found.'); return; } // Create new list item var li = document.createElement('li'); li.id = 'pt-reportabuse'; var a = document.createElement('a'); a.href = mw.util.getUrl('Report_Animal_Abuse'); a.textContent = '🐾 Report Abuse'; a.style.color = 'red'; a.style.fontWeight = 'bold'; li.appendChild(a); menuList.appendChild(li); console.log('[ReportAbuseLink] Link inserted.'); });