这是林泊百科的迁移技术测试站点,所有改动不会同步到林泊百科上,此站点将会在正式迁移后关闭,请勿存放重要数据
MediaWiki:Common.js:修订间差异
跳转到导航
跳转到搜索
小无编辑摘要 |
小无编辑摘要 标签:已被回退 |
||
| 第12行: | 第12行: | ||
}); | }); | ||
}); | }); | ||
function windowTop() { | |||
$(window).scrollTop(0); | |||
} | |||
2022年5月2日 (一) 15:53的版本
/* 这里的任何JavaScript将为所有用户在每次页面载入时加载。 */
$(document).ready(function(){
$("span.mw-summary-preset span.mw-summary-preset-item").click(function(){
$(this).parents("div.oo-ui-fieldLayout-body").first().find("input#wpSummary").val($(this).children().text());
});
$(".lw-treebut").click(function(){
$("div.lw-treediv").css("display","none");
$("span.lw-treediv").css("display","none");
attr = $(this).attr("id");
$("div." + attr).css("display","block");
$("span." + attr).css("display","inline");
});
});
function windowTop() {
$(window).scrollTop(0);
}