website: fixes

This commit is contained in:
k
2024-09-19 21:48:54 +02:00
parent 0f95d41785
commit 7d211f74d1
3 changed files with 15 additions and 10 deletions
+2
View File
@@ -13,6 +13,8 @@
- Fixed service worker not passing 304 (not modified) response and instead serving cached responses
- Fixed history not being properly registered
- Fixed prices on charts not having a wide enough background due to the font not being fully loaded during the creation of the chart
- Fixed window being moveable on iOS when in standalone mode when it shouldn't be
## Server
+1
View File
@@ -509,6 +509,7 @@
color: var(--color);
scrollbar-color: var(--off-color) var(--background-color); /* Foreground, Background */
scrollbar-width: thin;
overflow: hidden;
}
input {
+12 -10
View File
@@ -8027,16 +8027,18 @@ lazySignals.then((importedSignals) => {
dom.onFirstIntersection(selectedFrameElement, () =>
utils.runWhenIdle(() =>
import("./packages/lightweight-charts/v4.2.0/script.js").then(
({
createChart: createClassicChart,
createChartEx: createCustomChart,
}) => {
initSelectedFrame({
createClassicChart,
createCustomChart,
});
}
window.document.fonts.ready.then(() =>
import("./packages/lightweight-charts/v4.2.0/script.js").then(
({
createChart: createClassicChart,
createChartEx: createCustomChart,
}) => {
initSelectedFrame({
createClassicChart,
createCustomChart,
});
}
)
)
)
);