MediaWiki:Common.js
MediaWiki interface page
More actions
Note: After publishing, 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)
- Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
/* Live backbone status strip: fills <div id="sm-status"> with rns.scotmesh.net/status.html
(the same feed the old wiki's homepage iframe showed). */
$( function () {
var el = document.getElementById( 'sm-status' );
if ( !el ) { return; }
var f = document.createElement( 'iframe' );
f.src = 'https://rns.scotmesh.net/status.html';
f.title = 'ScotMesh backbone live status';
f.loading = 'lazy';
f.style.cssText = 'width:100%;height:64px;border:0;overflow:hidden;display:block';
el.textContent = '';
el.appendChild( f );
} );