MediaWiki:Fix tabbar.js:修订间差异
(创建页面,内容为“function fix_tabbar() { const tabLinks = document.querySelectorAll('.tabber__tab'); tabLinks.forEach(link => { link.addEventListener('mouseover', function(event) { event.stopImmediatePropagation(); event.preventDefault(); }, true); }); }; fix_tabbar()”) |
无编辑摘要 |
||
| 第1行: | 第1行: | ||
function fix_tabbar() { | function fix_tabbar() { | ||
const tabLinks = document.querySelectorAll('.tabber__tab'); | const tabLinks = document.querySelectorAll('.tabber__tab'); | ||
tabLinks.forEach(link => { | tabLinks.forEach(link => { | ||
| 第8行: | 第8行: | ||
}); | }); | ||
}; | }; | ||
fix_tabbar() | window.onload = function() { | ||
fix_tabbar() | |||
} | |||