MediaWiki:Common.js:修订间差异
外观
创建页面,内容为“→这里的任何JavaScript将为所有用户在每次页面加载时加载。: →This goes into your wikis MediaWiki:Common.js: →Any JavaScript here will be loaded for all users on every page load.: $('li#pt-anon_oauth_login a').click(function(){ articlePath = mw.config.get('wgArticlePath'); url = articlePath.replace('$1', 'Special:OAuth2Client/redirect?returnto=Special:OAuth2Client/close'); var left = (screen.width/2) - 200; var above = (screen.…” |
无编辑摘要 |
||
| 第1行: | 第1行: | ||
/* 这里的任何JavaScript将为所有用户在每次页面加载时加载。 */ | /* 这里的任何JavaScript将为所有用户在每次页面加载时加载。 */ | ||
/* This goes into your wikis MediaWiki:Common.js */ | /* This goes into your wikis MediaWiki:Common.js */ | ||
/* Any JavaScript here will be loaded for all users on every page load. | /* Any JavaScript here will be loaded for all users on every page load. | ||
$('li#pt-anon_oauth_login a').click(function(){ | $('li#pt-anon_oauth_login a').click(function(){ | ||
articlePath = mw.config.get('wgArticlePath'); | articlePath = mw.config.get('wgArticlePath'); | ||
| 第15行: | 第15行: | ||
window.close(); | window.close(); | ||
} | } | ||
*/ | |||
2025年2月28日 (五) 11:24的版本
/* 这里的任何JavaScript将为所有用户在每次页面加载时加载。 */
/* This goes into your wikis MediaWiki:Common.js */
/* Any JavaScript here will be loaded for all users on every page load.
$('li#pt-anon_oauth_login a').click(function(){
articlePath = mw.config.get('wgArticlePath');
url = articlePath.replace('$1', 'Special:OAuth2Client/redirect?returnto=Special:OAuth2Client/close');
var left = (screen.width/2) - 200;
var above = (screen.height/2) - 200;
newwindow = window.open(url, "_blank", "resizable=yes, scrollbars=yes, titlebar=yes, width=400, height=400, top="+above+", left="+left);
return false;
})
if (mw.config.get('wgTitle') == 'OAuth2Client/close') {
window.opener.location.reload();
window.close();
}
*/