MediaWiki:Common.js

From 3forge Documentation
Jump to navigation Jump to search

Note: After saving, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Go to Menu → Settings (Opera → Preferences on a Mac) and then to Privacy & security → Clear browsing data → Cached images and files.
$(function() {
    // Create banner element
    var banner = '<div style="text-align:center;position:fixed;left:0;top:0;width:100%;background:#eeeeeeee;padding:10px 30px;color:red;z-index:9999;pointer-events:none">⚠️ <b>NOTE</b>: This documentation has been deprecated, please visit <a href="https://doc.3forge.com/" style="pointer-events:auto">doc.3forge.com</a> for the latest version</div>';

    // Add banner to the top of the page
    $('#mw-head').after(banner);
});