MediaWiki talk:Gadget-addsection-plus.js
Appearance
{{editprotected}}
Please replace:
if(tablink.textContent) tablink.textContent = '+';
else if(tablink.innerHTML) tablink.innerHTML = '+';
with:
tablink.firstChild.nodeValue = '+';
as it's cross-browser, less complicated, and part of the W3 core DOM-1 spec. innerHTML with XHTML can be messy. Thanks, GracenotesT § 19:42, 19 April 2008 (UTC)
Done - Nihiltres{t.l} 20:46, 19 April 2008 (UTC)