Difference between revisions of "MediaWiki:Common.js"
Jump to navigation
Jump to search
Tim Holzheim (talk | contribs) (Undo revision 20992 by Tim Holzheim (talk)) Tag: Undo |
Tim Holzheim (talk | contribs) |
||
Line 1: | Line 1: | ||
+ | /* Load other js scripts */ | ||
+ | mw.loader.load( '/w/index.php?title=MediaWiki:Bootstrap-datetimepicker.js&action=raw&ctype=text/javascript' ); | ||
+ | |||
/* Any JavaScript here will be loaded for all users on every page load. */ | /* Any JavaScript here will be loaded for all users on every page load. */ | ||
function toggleHideShow(id) { | function toggleHideShow(id) { |
Revision as of 15:15, 6 March 2021
/* Load other js scripts */
mw.loader.load( '/w/index.php?title=MediaWiki:Bootstrap-datetimepicker.js&action=raw&ctype=text/javascript' );
/* Any JavaScript here will be loaded for all users on every page load. */
function toggleHideShow(id) {
var x = document.getElementById(id);
if (x.style.display === "none") {
x.style.display = "block";
} else {
x.style.display = "none";
}
}