User:Mattflaschen-WMF/common.js: Difference between revisions
Appearance
Content deleted Content added
add quotes |
only add any CSS class if it's one of these pages |
||
Line 11: | Line 11: | ||
var $body = $( 'body' ), enabled = false; |
var $body = $( 'body' ), enabled = false; |
||
if ( $body.is( '.mw-special-Recentchanges, .mw-special-Recentchangeslinked, .mw-special-Watchlist' ) ) { |
|||
if ( mw.user.options.get( 'rcenhancedfilters' ) ) { |
|||
if ( $body.is( '.mw-special-Recentchanges, .mw-special-Recentchangeslinked' ) ) { |
if ( mw.user.options.get( 'rcenhancedfilters' ) ) { |
||
if ( $body.is( '.mw-special-Recentchanges, .mw-special-Recentchangeslinked' ) ) { |
|||
enabled = true; |
enabled = true; |
||
} else if ( $body.is ('.mw-special-Watchlist' ) ) { |
} else if ( $body.is ('.mw-special-Watchlist' ) ) { |
||
enabled = ( mw.util.getParamValue( 'rcfilters' ) === |
enabled = ( mw.util.getParamValue( 'rcfilters' ) === 1 ); |
||
} |
|||
} |
} |
||
⚫ | |||
$body.addClass( enabled ? 'mw-rcfilters-enabled' : 'mw-rcfilters-disabled' ); |
|||
⚫ | |||
mw.loader.load( 'https://en.wikipedia.org/enwiki/w/index.php?title=User:Mattflaschen-WMF/MediaWiki:Gadget-WatchlistBase.css&action=raw&ctype=text/css', 'text/css' ); |
mw.loader.load( 'https://en.wikipedia.org/enwiki/w/index.php?title=User:Mattflaschen-WMF/MediaWiki:Gadget-WatchlistBase.css&action=raw&ctype=text/css', 'text/css' ); |
Revision as of 01:51, 12 September 2017
mw.loader.load( 'https://en.wikipedia.org/enwiki/w/index.php?title=User:Albert221/common.css&action=raw&ctype=text/css', 'text/css' );
mw.loader.load( 'https://en.wikipedia.org/enwiki/w/index.php?title=MediaWiki:Gadget-ReferenceTooltips.js&action=raw&ctype=text/javascript' );
// [[File:User:He7d3r/Tools/DebugModeToggle.js]] (workaround for [[bugzilla:33355]])
mw.loader.load( '//meta.wikimedia.org/enwiki/w/index.php?title=User:He7d3r/Tools/DebugModeToggle.js&action=raw&ctype=text/javascript' );
// [[File:Krinkle_RTRC.js]]
mw.loader.load('//meta.wikimedia.org/enwiki/w/index.php?title=User:Krinkle/RTRC.js&action=raw&ctype=text/javascript');
mw.loader.using( 'mediawiki.util' ).done( function () {
var $body = $( 'body' ), enabled = false;
if ( $body.is( '.mw-special-Recentchanges, .mw-special-Recentchangeslinked, .mw-special-Watchlist' ) ) {
if ( mw.user.options.get( 'rcenhancedfilters' ) ) {
if ( $body.is( '.mw-special-Recentchanges, .mw-special-Recentchangeslinked' ) ) {
enabled = true;
} else if ( $body.is ('.mw-special-Watchlist' ) ) {
enabled = ( mw.util.getParamValue( 'rcfilters' ) === 1 );
}
}
$body.addClass( enabled ? 'mw-rcfilters-enabled' : 'mw-rcfilters-disabled' );
}
mw.loader.load( 'https://en.wikipedia.org/enwiki/w/index.php?title=User:Mattflaschen-WMF/MediaWiki:Gadget-WatchlistBase.css&action=raw&ctype=text/css', 'text/css' );
var skin = mw.config.get( 'skin' );
if ( skin === 'vector' ) {
mw.loader.load( 'https://en.wikipedia.org/enwiki/w/index.php?title=User:Mattflaschen-WMF/MediaWiki:Gadget-WatchlistGreenIndicators.css&action=raw&ctype=text/css', 'text/css' );
} else if ( skin === 'monobook' || skin === 'modern' ) {
mw.loader.load( 'https://en.wikipedia.org/enwiki/w/index.php?title=User:Mattflaschen-WMF/MediaWiki:Gadget-WatchlistGreenIndicatorsMono.css&action=raw&ctype=text/css', 'text/css' );
}
mw.loader.load( 'https://en.wikipedia.org/enwiki/w/index.php?title=User:Mattflaschen-WMF/MediaWiki:Gadget-WatchlistChangesBold.css&action=raw&ctype=text/css', 'text/css' );
} );