Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions special-pages/pages/history/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,15 @@
}
}
</style>
<script>
// $LOADING_COLOR$ is replaced by native via string interpolation.
// This script must be in <head> to block rendering and prevent flash of wrong color.
const loadingColor = "$LOADING_COLOR$";
const hasLoadingColor = !!loadingColor && !loadingColor.startsWith("$");
if (hasLoadingColor) {
document.documentElement.style.background = loadingColor;
}
</script>
<title>History</title>
<meta name="robots" content="noindex,nofollow">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
Expand Down
Loading