Apply body styles to mw teleport target

Bug: T347199
Change-Id: Ibd5d8c7cc7880678fae498a451cfd417f1f8e1b8
This commit is contained in:
Sergio Gimeno 2023-09-22 19:00:27 +02:00 committed by Jdlrobson
parent 5d7018722d
commit 76c21734d6

View file

@ -10,7 +10,8 @@ const languageButton = require( './languageButton.js' ),
dropdownMenus = require( './dropdownMenus.js' ).dropdownMenus,
watchstar = require( './watchstar.js' ).init,
setupIntersectionObservers = require( './setupIntersectionObservers.js' ),
menuTabs = require( './menuTabs.js' );
menuTabs = require( './menuTabs.js' ),
teleportTarget = /** @type {HTMLElement} */require( /** @type {string} */ ( 'mediawiki.page.ready' ) ).teleportTarget;
/**
* Wait for first paint before calling this function. That's its whole purpose.
@ -97,6 +98,8 @@ function main( window ) {
pinnableElement.initPinnableElement();
// Initializes the TOC and sticky header, behaviour of which depend on scroll behaviour.
setupIntersectionObservers.main();
// Apply body styles to teleported elements
teleportTarget.classList.add( 'vector-body' );
}
/**