MediaWiki

Common.js

From Dogcraft Wiki

(cleanup: removed unused: Go_to_Dogcraft button (part of skin now), 2021 Pride Month custom logo (hasn't worked since the last week of june 2021), dismissable sitenotice fix (part of skin now), font awesome v6 import (part of skin now), slick import (gadget now))
m (actions button visible on rules and help resources to those who can edit it (moved from group-site-content-edit.css because this page takes up less load time))
Line 27: Line 27:
});
});
/*== Shows edit button on Rules and Help Resources for those who can edit it ==*/
var pagename = mw.config.get('wgPageName');
if (pagename === 'Rules' || pagename === 'Help_Resources') {
if (mw.config.get('wgIsProbablyEditable')) {
$('#wikiActions').show();
}
}
 
});
});

Revision as of 00:16, 17 April 2022

/* Any JavaScript here will be loaded for all users on every page load. */

/* Navigation Popups */
/* Currently Disabled
mw.loader.load('/load.php?modules=ext.gadget.Navigation_popups');
window.popupAdminLinks = false;
window.popupActionsMenu = false;
window.popupStructure = 'lite';
window.popupSubpopups = false;
window.popupSummaryData = false;
*/

$(document).ready(function() {
	// var indicator = document.querySelectorAll(".mw-indicators");
	// var indicator1 = indicator[0];
	
	// if (indicator1.childNodes.length !== 1) {document.getElementById("tagline").innerHTML = indicator1.innerHTML;}
	
	/*== Hides the actions button and indicators while in the Visual editor ==*/
	
	mw.hook( 've.activationComplete' ).add( function () {
		$('.content .top').hide();
	});
	
	mw.hook( 've.deactivationComplete' ).add( function () {
			$('.content .top').show();
	});
	
	/*== Shows edit button on Rules and Help Resources for those who can edit it ==*/
	var pagename = mw.config.get('wgPageName');
	if (pagename === 'Rules' || pagename === 'Help_Resources') {
		if (mw.config.get('wgIsProbablyEditable')) {
			$('#wikiActions').show();
		}
	}

});
This page was last modified on 17 April 2022, at 00:16. (5 months ago)