MediaWiki:Common.js: различия между версиями

Материал из DiPix Wiki
(нет различий)

Версия от 17:01, 22 января 2025

/* Размещённый здесь код JavaScript будет загружаться пользователям при обращении к каждой странице */

/*
 * сплеши
 * на данный момент отображаются только в скине Citizen
 * сплеш может быть строкой или функцией возвращающая строчку
 */
const splashes = [
	"create your own european union",
	function() {
		return `${new Date().getFullYear()} is the year of linux desktop`
	},
	"kraskaska was here"
]

const tagline = document.querySelector("#footer-tagline")

if(tagline) {
	const splash = splashes[Math.floor(Math.random() * splashes.length)]
	if (typeof splash === 'function') {
		tagline.innerText = splash()
	} else {
		tagline.innerText = splash
	}
}