MediaWiki:Gadget-Help.js

来自PlantsVsZombies Mixed
4573去讨论 | 贡献2024年2月23日 (五) 04:31的版本 (创建页面,内容为“$().ready(function(){ $('.mc-tooltips').each(function (i, e) { if(!e.children || e.children.length < 2){ return; } e.children[1].style.display = 'block'; tippy6(e.children[0], { content: e.children[1], arrow: true, theme: 'light-border', size: 'large', maxWidth: parseInt(e.children[1].dataset.size), trigger: e.children[1].dataset.trigger||'mouseenter focus' }); }); });”)
(差异) ←上一版本 | 最后版本 (差异) | 下一版本→ (差异)
跳转到导航 跳转到搜索

注意:在发布之后,您可能需要清除浏览器缓存才能看到所作出的变更的影响。

  • Firefox或Safari:按住Shift的同时单击刷新,或按Ctrl-F5Ctrl-R(Mac为⌘-R
  • Google Chrome:Ctrl-Shift-R(Mac为⌘-Shift-R
  • Internet Explorer或Edge:按住Ctrl的同时单击刷新,或按Ctrl-F5
  • Opera:Ctrl-F5
$().ready(function(){
    $('.mc-tooltips').each(function (i, e) {
    	if(!e.children || e.children.length < 2){
    		return;
    	}
    	e.children[1].style.display = 'block';
    	tippy6(e.children[0], {
        	content: e.children[1],
        	arrow: true,
        	theme: 'light-border',
        	size: 'large',
        	maxWidth: parseInt(e.children[1].dataset.size),
        	trigger: e.children[1].dataset.trigger||'mouseenter focus'
    	});
	});
});