User:Dlrohrer2003/global.js
Appearance
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.
mw.loader.load( '//en.wikipedia.org/w/index.php?title=User:Dlrohrer2003/portlet-toggle.js&action=raw&ctype=text/javascript' );
mw.config.set("wgMediaViewerOnClick", false);
// Prevent edit submission when accidentally pressing the Enter key while typing up
// an edit summary.
if ( mw.config.get( 'wgAction' ) === 'edit' || mw.config.get( 'wgAction' ) === 'submit' ) {
document
.getElementById( 'wpSummary' )
.addEventListener( 'keydown', function ( event ) {
if ( event.key === 'Enter' ) {
event.preventDefault();
}
} );
}