Difference between revisions of "MediaWiki:Common.js"

From StarMade Wiki
(Added latest StarMade version display)
 
(Adjusted login popup window dimensions)
 
(6 intermediate revisions by the same user not shown)
Line 1: Line 1:
/* Auto update with current stable version of StarMade */
+
//Popup window for OAuth2 login
 +
$('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) - 300;
 +
var above = (screen.height/2) - 300;
 +
newwindow = window.open(url, "_blank", "resizable=yes, scrollbars=yes, titlebar=no, width=600, height=685, top="+above+", left="+left);
 +
return false;
 +
})
  
$(function() {
+
if (mw.config.get('wgTitle') == 'OAuth2Client/close') {
$.get("https://registry.star-made.org/api/v1/current_version").then(function (data) {
+
window.opener.location.reload();
$(".topbar_version > span").text(data.version);
+
window.close();
});
+
}
});
 

Latest revision as of 13:11, 11 September 2016

//Popup window for OAuth2 login
$('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) - 300;
	var above = (screen.height/2) - 300;
	newwindow = window.open(url, "_blank", "resizable=yes, scrollbars=yes, titlebar=no, width=600, height=685, top="+above+", left="+left);
	return false;
})

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