User:AviCapt/common.js

Source: Wikipedia, the free encyclopedia.
Note: After saving, you have to bypass your browser's cache to see the changes. Google Chrome, Firefox, Microsoft Edge and Safari: Hold down the ⇧ Shift key and click the Reload toolbar button. For details and instructions about other browsers, see Wikipedia:Bypass your cache.
// USER SCRIPTS

mw.loader.load( '/w/index.php?title=User:RedWarn/.js&action=raw&ctype=text/javascript' ); // Backlink: [[User:RedWarn/.js]]
importScript('User:Jackmcbarn/editProtectedHelper.js'); // Linkback: [[User:Jackmcbarn/editProtectedHelper.js]]
importScript( 'User:Enterprisey/CustomSummaryPresets.js' ); // Backlink: [[User:Enterprisey/CustomSummaryPresets.js]]
importScript( 'User:Danski454/stubsearch.js' ); // Backlink: [[User:Danski454/stubsearch.js]]
mw.loader.load( '/w/index.php?title=User:Evad37/rater.js&action=raw&ctype=text/javascript' ); // Backlink: [[User:Evad37/rater.js]]
mw.loader.load( '/w/index.php?title=User:Ingenuity/AntiVandal.js&action=raw&ctype=text/javascript' ); // Backlink: [[User:Ingenuity/AntiVandal.js]] // (AntiVandal)

// CUSTOM EDIT SUMMARIES

var customNamespaceSummaries = {
'2': [ // USER SPACE
"stats and time update"
],
'3': [ // USER TALK SPACE
"deleted message for [[User talk:AviCapt/Archive 4|archival]]", "placed dated message from [[User talk:AviCapt|main talk page]]"
],
};

// ROLLBACK LINK REMOVALS

if(mw.config.get( 'wgCanonicalSpecialPageName' ) === 'Watchlist' || mw.config.get( 'wgCanonicalSpecialPageName' ) === 'Recentchanges' || mw.config.get( 'wgCanonicalSpecialPageName' ) === 'Contributions'){
    $('span.mw-rollback-link').remove();
}

// PENDING CHANGES LINK

$.when( mw.loader.using( ['mediawiki.util'] ), $.ready ).done( function() {
  mw.util.addPortletLink(
    'p-personal',
    mw.util.getUrl('Special:PendingChanges'),
    'Pending Changes',
    'pt-pendingchanges',
    'View edits needing review',
    null,
    '#pt-preferences'
  );
});