Skip to content

Instantly share code, notes, and snippets.

/* mainpageQuoteOnce.js */
(function () {
if (mw.config.get('wgIsMainPage') !== true) return;
var $ = jQuery;
function pickOne(arr) {
return arr[Math.floor(Math.random() * arr.length)];
}
/* mainpageQuoteOnce.js — shows ONE random quote from a bulleted list page */
(function () {
// Optional: only run on the main page. Delete the next 2 lines to allow everywhere.
if (mw.config.get('wgIsMainPage') !== true) return;
var $ = window.jQuery;
function pickOne(arr) {
if (!arr || !arr.length) return null;
return arr[Math.floor(Math.random() * arr.length)];