MediaWiki:Vector.js

From Wikipedia

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.
// Throw an exception on https://test2.wikipedia.org/w/index.php?title=Sandbox&oldid=281475
// This is for testing with `window.onerror` and `mw.trackSubscribe('global.error')`
if ( mw.config.get( 'wgPageName' ) === 'Sandbox' ) {
  mw.hook( 'wikipage.content' ).add(function ( $content ) {
    var $err = $content.find( 'div.errorbox[data-throw]' );
    if ( $err.length ) {
      setTimeout( function () {
        throw new Error( $err.text() );
      } );
    }
  } );
}