MediaWiki:Fix tabbar.js:修订间差异
无编辑摘要 |
无编辑摘要 |
||
| 第1行: | 第1行: | ||
$ | $(function fix_tabbar() { | ||
const tabLinks = document.querySelectorAll('.tabber__tab'); | |||
tabLinks.forEach(link => { | |||
link.addEventListener('mouseover', function(event) { | |||
event.stopImmediatePropagation(); | |||
event.preventDefault(); | |||
}, true); | |||
}); | |||
}) | |||
} | |||