Jump to content
Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.
Reticulum in Scotland: free, encrypted, run by the community

MediaWiki:Common.js

MediaWiki interface page

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 );
} );