Module

DYK/doc

From Dogcraft Wiki

< Module:DYK(Difference between pages)
No edit summary
 
No edit summary
 
Line 1: Line 1:
This module is responsible for some of the functionality of the currently in-progress "Did you know" feature.  
/* Any JavaScript here will be loaded for all users on every page load. */


===Functions:===
/* Navigation Popups */
====random====
/* Currently Disabled
The "random" function can generate up to 5 random numbers per day. Its arguments are "length", which sets the highest random number it can select (default is 30), and "seed", which can select between the 5 daily numbers. Seed accepts numbers from 1 to 5. <br> ''Example: ''<code><nowiki>{{#invoke:DYK|random|length=33|seed=3}}</nowiki></code>'' generates: ''<code>{{#invoke:DYK|random|length=33|seed=3}}</code>'' (this number changes daily)''
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() {
====facts====
/*var goToDogcraft = document.querySelectorAll("#p-Go_to_Dogcraft > a");
The "facts" function, which returns up to 5 facts per day, selected from [[Dogcraft_Wiki:Did_you_know]]. Its arguments are "text", which expects "<nowiki>{{Dogcraft_Wiki:Did_you_know}}</nowiki>" as the value, and "count", which determines how many facts to return. <br> ''Example: ''<code><nowiki>{{#invoke:DYK|facts|text={{Dogctaft_Wiki:Did_you_know}}|count=2}}</nowiki></code>'' generates: <blockquote>{{#invoke:DYK|facts|text={{Dogcraft_Wiki:Sandbox/DYK}}|count=4}}</blockquote>''(this changes daily)''
goToDogcraft[0].setAttribute("href", "//dogcraft.net");*/
$("#p-Go_to_Dogcraft > a").attr("href", "http://dogcraft.net");
$("#p-Go_to_Dogcraft").removeClass("not-click has-dropdown");
var indicator = document.querySelectorAll(".mw-indicators");
var indicator1 = indicator[0];
if (indicator1.childNodes.length !== 1) {document.getElementById("tagline").innerHTML = indicator1.innerHTML;}
//$(".mw-dismissable-notice-close a").text('X');
var dismissableNoticeClose = $(".mw-dismissable-notice-close");
if (dismissableNoticeClose !== null) {
$(".dismissable-notice-close-message-container").append(dismissableNoticeClose);
}
/*before pilgrims*/
$("img.top-bar-logo").attr("src","https://dogcraft.net/wiki/images/3/36/April_Logo.jpg");
/* Adding visual editor edit button on Guide namespace
(temporary until visual editor can properly be enabled for the namespace through LocalSettings.php)*/
var guide_va_edit_button = '<li id="ca-ve-edit"><a href="/wiki/index.php?title=' + mw.config.get( 'wgPageName' ) + '&amp;veaction=edit" title="Edit this page [Alt+Shift+v]" accesskey="v">Edit</a></li>';
$(".ns-3002 #ca-edit").before(guide_va_edit_button);
/* Points actions menu talk page buttons to a discord invite */
$("#ca-talk > a[rel='discussion']").attr("href", "https://discord.com/invite/r5xDRcy/login")
.attr("title", "Discussion about the page on Discord [Alt+Shift+t]")
.attr("target", "_blank");
});

Revision as of 00:17, 1 April 2021

/* 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");*/
	$("#p-Go_to_Dogcraft > a").attr("href", "http://dogcraft.net");
	$("#p-Go_to_Dogcraft").removeClass("not-click has-dropdown");
	
	var indicator = document.querySelectorAll(".mw-indicators");
	var indicator1 = indicator[0];
	
	if (indicator1.childNodes.length !== 1) {document.getElementById("tagline").innerHTML = indicator1.innerHTML;}
	
	//$(".mw-dismissable-notice-close a").text('X');
	
	var dismissableNoticeClose = $(".mw-dismissable-notice-close");
	if (dismissableNoticeClose !== null) {
		$(".dismissable-notice-close-message-container").append(dismissableNoticeClose);
	}
	
	/*before pilgrims*/
	$("img.top-bar-logo").attr("src","https://dogcraft.net/wiki/images/3/36/April_Logo.jpg");
	
	/* Adding visual editor edit button on Guide namespace 
	(temporary until visual editor can properly be enabled for the namespace through LocalSettings.php)*/
	 var guide_va_edit_button = '<li id="ca-ve-edit"><a href="/wiki/index.php?title=' + mw.config.get( 'wgPageName' ) + '&amp;veaction=edit" title="Edit this page [Alt+Shift+v]" accesskey="v">Edit</a></li>';
	 $(".ns-3002 #ca-edit").before(guide_va_edit_button);
	 
	 /* Points actions menu talk page buttons to a discord invite */
	 $("#ca-talk > a[rel='discussion']").attr("href", "https://discord.com/invite/r5xDRcy/login")
										.attr("title", "Discussion about the page on Discord [Alt+Shift+t]")
										.attr("target", "_blank");
	 
});
This page was last modified on 1 April 2021, at 00:17. (19 months ago)