MediaWiki:Common.js: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| Line 24: | Line 24: | ||
} | } | ||
} | } | ||
}); | |||
//aesthetic | |||
function randomColor() { | |||
return '#' + Math.floor(Math.random()*16777215).toString(16); | |||
} | |||
document.addEventListener("DOMContentLoaded", function() { | |||
const colors = [randomColor(), randomColor(), randomColor(), randomColor()]; | |||
document.body.style.background = `linear-gradient(270deg, ${colors.join(', ')})`; | |||
document.body.style.backgroundSize = '800% 800%'; | |||
}); | }); | ||
Revision as of 06:03, 26 November 2025
/* Any JavaScript here will be loaded for all users on every page load. */
// Auto-preload template for Shared_Experiences new story form
mw.hook('wikipage.content').add(function () {
// Only run on new-section add
if (
mw.config.get('wgPageName') === 'Shared_Experiences' &&
mw.config.get('wgAction') === 'edit' &&
new URLSearchParams(window.location.search).get('section') === 'new'
) {
var textbox = document.getElementById('wpTextbox1');
// Only insert if the textbox is empty
if (textbox && textbox.value.trim() === '') {
new mw.Api().get({
action: 'parse',
page: 'Template:SharedExperience/Preload',
prop: 'wikitext',
format: 'json'
}).done(function (data) {
// FIX: MediaWiki stores wikitext under ['*']
textbox.value = data.parse.wikitext['*'];
});
}
}
});
//aesthetic
function randomColor() {
return '#' + Math.floor(Math.random()*16777215).toString(16);
}
document.addEventListener("DOMContentLoaded", function() {
const colors = [randomColor(), randomColor(), randomColor(), randomColor()];
document.body.style.background = `linear-gradient(270deg, ${colors.join(', ')})`;
document.body.style.backgroundSize = '800% 800%';
});