mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/Vector.git
synced 2024-12-04 20:18:57 +00:00
caa650a881
Bug: T330527 Change-Id: I61280270c6257ceaf5a6d74bb01be37063474bc7
22 lines
551 B
JavaScript
22 lines
551 B
JavaScript
const init = () => {
|
|
const tables = document.querySelectorAll( '.mw-parser-output > table' );
|
|
Array.from( tables ).forEach( ( table ) => {
|
|
// Don't wrap tables within tables
|
|
const parent = table.parentElement;
|
|
if (
|
|
parent && table.matches( '.wikitable' ) &&
|
|
!parent.matches( '.noresize' ) &&
|
|
!parent.closest( 'table' )
|
|
) {
|
|
const wrapper = document.createElement( 'div' );
|
|
wrapper.classList.add( 'noresize' );
|
|
parent.insertBefore( wrapper, table );
|
|
wrapper.appendChild( table );
|
|
}
|
|
} );
|
|
};
|
|
|
|
module.exports = {
|
|
init
|
|
};
|