mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-11-16 18:58:45 +00:00
8 lines
207 B
JavaScript
8 lines
207 B
JavaScript
|
( function ( M, $ ) {
|
||
|
var userFontSize = mw.storage.get( 'userFontSize' );
|
||
|
|
||
|
if ( userFontSize !== '100' ) {
|
||
|
$( '.content p' ).css( 'font-size', userFontSize + '%' );
|
||
|
}
|
||
|
}( mw.mobileFrontend, jQuery ) );
|