Gebruiker:Bdijkstra/noupload.js

Uit Wikipedia, de vrije encyclopedie

Opmerking: nadat u de wijzigingen hebt gepubliceerd is het wellicht nodig uw browsercache te legen.

  • Firefox / Safari: houd Shift ingedrukt terwijl u op Vernieuwen klikt of druk op Ctrl-F5 of Ctrl-R (⌘-Shift-R op een Mac)
  • Google Chrome: druk op Ctrl-Shift-R (⌘-Shift-R op een Mac)
  • Internet Explorer / Edge: houd Ctrl ingedrukt terwijl u op Vernieuwen klikt of druk op Ctrl-F5
  • Opera: druk op Ctrl-F5.
/* 
 * For missing media links, replace the link to Special:Upload by 
 * a link to the (possibly deleted) file on Wikimedia Commons.
 */
if ( mw.config.get( 'wgNamespaceNumber', 0 ) >= 0 ) {
	mw.hook( 'wikipage.content' ).add( function ( $content ) {
		$content.find( 'a.new' ).attr( 'href', function ( i, currVal ) {
			return currVal.replace( 
				/^.*\/w.*\?.*wpDestFile=/, 
				'https://commons.wikimedia.org/wiki/File:'
			);
		} );
	} );
}