Site Notice
hello, world
Difference between revisions of "User:机智的小鱼君/common.js"
From Project-EPB Commons
([InPageEdit] 没有编辑摘要) |
([InPageEdit] 没有编辑摘要) |
||
Line 1: | Line 1: | ||
− | mw.loader.load('https://common.wjghj.cn/js/InPageEdit- | + | mw.loader.load('https://common.wjghj.cn/js/InPageEdit-v2'); |
$(function(){ | $(function(){ | ||
$('#ca-view').after( | $('#ca-view').after( |
Revision as of 18:01, 23 November 2019
mw.loader.load('https://common.wjghj.cn/js/InPageEdit-v2');
$(function(){
$('#ca-view').after(
$('<li>',{
id:'ca-quick-edit',
class:'collapsible'
}).append(
$('<span>').append(
$('<a>',{
href: 'javascript:void(0)'
})
.text('快速编辑')
.click(function(){
InPageEdit.edit({
page: mw.config.get('wgPageName'),
revision: mw.config.get('wgRevisionId')
});
})
)
)
);
});