MediaWiki

Common.js

From Dogcraft Wiki

Revision as of 15:44, 12 December 2020 by Domino (talk | contribs)

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (โŒ˜-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (โŒ˜-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
/* 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 goToDogcraft = document.querySelectorAll("#p-Go_to_Dogcraft > a");
	goToDogcraft[0].setAttribute("href", "//dogcraft.net");
	
	var indicator = document.querySelectorAll(".mw-indicators");
	var indicator1 = indicator[0];
	
	if (indicator1.childNodes.length !== 1) {document.getElementById("tagline").innerHTML = indicator1.innerHTML;}
	
	
	if (mw.config.get('wgPageName') === "User:Domino/Sandbox")
	{
			$("#alertbutton").click(function(){
				/*
    				expand_templates.js

    				MediaWiki API Demos
    				Demo of `Expandtemplates` module: Expand the Project:Sandbox template.

    				MIT License
				*/
				var params = {
				    action: "expandtemplates",
				    text: "{{UUID| " + mw.config.get('wgUserName') + "}}",
				    prop: "wikitext",
				    format: "json"
					},
					api = new mw.Api();

				api.get( params ).done( function ( data ) {
				console.log( data );
				} );
			}); 
	}
				
});
This page was last modified on 12 December 2020, at 15:44. (5 months ago)