User:BryanDavis/common.js

From Wikitech

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)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
/*
 * Add the backend response time and the PHP runtime (HHVM or PHP5) to the personal bar.
 * From [[:meta:User:Ori.livneh/global.js]]
 */
function showBackendPerformance() {
	var backend  = mw.config.get( 'wgHostname' ),
		respTime = mw.config.get( 'wgBackendResponseTime' ),
		caption  = backend + ' • ' + respTime.toString() + 'ms';
		
	$( '<li>' ).html( caption ).addClass( 'bd808-smaller' ).prependTo( '#p-personal ul' );
}

$( window ).on( 'load', function () {
	showBackendPerformance();
} );