MediaWiki:Common.js: differenze tra le versioni

Contenuto cancellato Contenuto aggiunto
aggiunto commento iniziale da en:MediaWiki:Common.js
rimosso fix IE7 come da discussione
Riga 135:
document.getElementById( 'wpSummaryLabel' ).style.display = 'none';
document.getElementById( 'wpSummary' ).style.display = 'none';
} );
}
/**
* Cambia posizione e link del link "modifica" delle sezioni
* Fatto in Common.css, questo è un fix per IE7
*/
if ( $.client.profile().name === 'msie' && $.client.profile().versionNumber < 8 ) {
$( function () {
$( '.editsection' ).each( function( i, e ) {
$( e ).parent().append( e );
} );
} );
}