Difference between revisions of "MediaWiki:Common.js"

From Neos Wiki
Jump to navigation Jump to search
(Created page with "→‎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...")
 
 
(2 intermediate revisions by 2 users not shown)
Line 5: Line 5:
 
var left = (screen.width/2) - 200;
 
var left = (screen.width/2) - 200;
 
var above = (screen.height/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);
+
newwindow = window.open(url, "_blank", "resizable=yes, scrollbars=yes, titlebar=yes, width=1000, height=600, top="+above+", left="+left);
 
return false;
 
return false;
 
})
 
})

Latest revision as of 15:05, 22 August 2023

/* 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=1000, height=600, top="+above+", left="+left);
	return false;
})

if (mw.config.get('wgTitle') == 'OAuth2Client/close') {
	window.opener.location.reload();
	window.close();
}