mirror of
https://github.com/microsoft/autogen.git
synced 2025-07-11 19:11:39 +00:00
11 lines
268 B
JavaScript
11 lines
268 B
JavaScript
var version = DOCUMENTATION_OPTIONS.VERSION;
|
|
if (version === "stable") {
|
|
var styles = `
|
|
#bd-header-version-warning {
|
|
display: none;
|
|
}
|
|
`
|
|
var styleSheet = document.createElement("style")
|
|
styleSheet.textContent = styles
|
|
document.head.appendChild(styleSheet)
|
|
} |