User:Equazcion/SkipFileWizard.js

if (typeof SkipFileWizardOption == 'undefined') {

SkipFileWizardOption = 'FileSpace';

}

$( 'a.new[href*="wpDestFile"]' ).attr( 'href', function (index, value) {

if ( SkipFileWizardOption == 'FileSpace' ) {

var fileTitle = mw.util.getParamValue( 'wpDestFile', value );

var fileName = mw.config.get( 'wgFormattedNamespaces' )[6] + ':' + fileTitle;

var params = {

action: 'edit',

redlink: 1

};

return mw.util.getUrl( fileName, params );

} else {

return mw.util.getUrl( 'Special:Upload' );

}

} );