Closed RimuEirnarn closed 10 months ago
It seems that you are trying to repeat unnecessary things like doing:
<a href="#new-mod" onclick="showTab('new-mod'); return false;">Making a new mod</a>
This PR will automatically do the job by adding an event on document load. Basically only requires <a> to have target href.
<a>
<a href="#new-mod">Making a new mod</a>
It seems that you are trying to repeat unnecessary things like doing:
This PR will automatically do the job by adding an event on document load. Basically only requires
<a>
to have target href.