MediaWiki talk:Gadget-hideFlowthreadDefaultly.js
跳转到导航
跳转到搜索
编辑请求 - Bhsd - 2022.01.19
由Bhsd提出的对MediaWiki:Gadget-hideFlowthreadDefaultly.js的编辑请求:
- 状态: 完成
将以下内容:
$("#flowthread").hide();
});修改为:
if (location.hash !== '#flowthread') {
$("#flowthread").hide();
}
if (location.hash === '#flowthread') {
location.replace('#/');
}
});
$(window).on('hashchange', function() {
if (location.hash === '#flowthread') {
$('#flowthread').show();
}
});参见讨论版。————移动版用户 Bhsd 2022年1月20日 (四) 15:10 (CST)
- Done. —— ほしみ 2022年1月20日 (四) 17:35 (CST)