Merge pull request #20667 from overleaf/td-bs5-always-enabled-option

Add option to always enable BS5 for a particular page

GitOrigin-RevId: f338c4f4be87aae1a2a239a2b36b738616aabaed
This commit is contained in:
Tim Down 2024-10-11 10:31:49 +01:00 committed by Copybot
parent ecb94d6525
commit c817c5ed98
2 changed files with 3 additions and 4 deletions

View file

@ -7,7 +7,7 @@ html(
) )
- metadata = metadata || {} - metadata = metadata || {}
- let bootstrap5PageStatus = 'disabled' // One of 'disabled', 'enabled', and 'queryStringOnly' - let bootstrap5PageStatus = 'disabled' // One of 'disabled', 'enabled', and 'queryStringOnly'
- let bootstrap5PageSplitTest = '' - let bootstrap5PageSplitTest = '' // Limits Bootstrap 5 usage on this page to users with an assignment of "enabled" for the specified split test. If left empty and bootstrap5PageStatus is "enabled", the page always uses Bootstrap 5.
- let isWebsiteRedesign = false - let isWebsiteRedesign = false
block entrypointVar block entrypointVar
@ -17,7 +17,7 @@ html(
head head
include ./_metadata.pug include ./_metadata.pug
- const bootstrapVersion = bootstrap5PageStatus !== 'disabled' && (bootstrap5Override || (bootstrap5PageStatus === 'enabled' && splitTestVariants[bootstrap5PageSplitTest] === 'enabled')) ? 5 : 3 - const bootstrapVersion = bootstrap5PageStatus !== 'disabled' && (bootstrap5Override || (bootstrap5PageStatus === 'enabled' && (bootstrap5PageSplitTest === '' || splitTestVariants[bootstrap5PageSplitTest] === 'enabled'))) ? 5 : 3
- const ieeeStylesheetEnabled = splitTestVariants?.['ieee-stylesheet'] !== 'disabled' - const ieeeStylesheetEnabled = splitTestVariants?.['ieee-stylesheet'] !== 'disabled'
//- Stylesheet //- Stylesheet

View file

@ -6,7 +6,6 @@ include ./_mixins/bootstrap_js
block entrypointVar block entrypointVar
- entrypoint = 'marketing' - entrypoint = 'marketing'
- bootstrap5PageStatus = 'enabled' // One of 'disabled', 'enabled', and 'queryStringOnly' - bootstrap5PageStatus = 'enabled' // One of 'disabled', 'enabled', and 'queryStringOnly'
- bootstrap5Override = true
- isWebsiteRedesign = true - isWebsiteRedesign = true
block body block body
@ -27,4 +26,4 @@ block body
!= moduleIncludes("contactModal-marketing-bootstrap-5", locals) != moduleIncludes("contactModal-marketing-bootstrap-5", locals)
block prepend foot-scripts block prepend foot-scripts
+bootstrap-js(5) +bootstrap-js(5)