MediaWiki: Common.js

From Spire Trading Inc.
Jump to: navigation, search
Line 1: Line 1:
 
/* 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() {
 +
  // Sticky footer using flexbox - simple and reliable
 +
  $('body').css({
 +
    'display': 'flex',
 +
    'flex-direction': 'column',
 +
    'min-height': '100vh'
 +
  });
 +
  $('#footer').css('margin-top', 'auto');
 +
});

Revision as of 18:37, 27 May 2026

/* Any JavaScript here will be loaded for all users on every page load. */
$(function() {
  // Sticky footer using flexbox - simple and reliable
  $('body').css({
    'display': 'flex',
    'flex-direction': 'column',
    'min-height': '100vh'
  });
  $('#footer').css('margin-top', 'auto');
});