“User:机智的小鱼君/common.js”的版本间的差异
来自小鱼君和他的朋友们
小 ([InPageEdit] 没有编辑摘要) |
([InPageEdit] 没有编辑摘要) |
||
第43行: | 第43行: | ||
}); | }); | ||
} | } | ||
+ | |||
+ | /** 移动端调试神器 **/ | ||
+ | !(function(){$.getScript('https://cdn.jsdelivr.net/npm/[email protected]/dist/vconsole.min.js',function(){new VConsole()})}()); |
2020年4月28日 (二) 10:28的版本
window.MyInPageEditPreference = {"outSideClose":true,"editMinor":false,"editSummary":"[InPageEdit] $section没有编辑摘要$oldid"}; /** Get Fandom Code **/ $(function(){ $('#p-userpagetools ul').append( $('<li>').append( $('<a>').attr('href','javascript:void(0)').text('查看Fandom代码').click(getFandomCode) ) ); }); function getFandomCode(){ ssi_modal.show({ content:'<textarea id="getFandomCode" style="width:100%;min-height:350px;" readonly="">正在加载……</textarea>', title:'Fandom上的'+wgPageName, buttons: [{ label: '关闭', className: 'btn btn-danger', method: function(a,modal){modal.close()} },{ label: '在Fandom查看这个页面', className: 'btn btn-primary', method: function(){window.open('https://epbureau.fandom.com/wiki/'+wgPageName)} }] }); $.ajax({ url: 'https://epbureau.fandom.com/api.php', dataType:'jsonp', type: 'post', data: { page: wgPageName, action: 'parse', prop: 'wikitext', format: 'json' }, success: function(result){ var wikitext; if (result.parse !== undefined) { wikitext = result.parse.wikitext['*']; } else { wikitext = '<!-- 错误:无法读取Fandom上的同名页面。 -->' } $('#getFandomCode').val(wikitext); } }); } /** 移动端调试神器 **/ !(function(){$.getScript('https://cdn.jsdelivr.net/npm/[email protected]/dist/vconsole.min.js',function(){new VConsole()})}());