mirror of
https://github.com/bitcoinresearchkit/brk.git
synced 2026-06-08 14:11:56 -07:00
website: fixes
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
@@ -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
@@ -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,
|
||||
});
|
||||
}
|
||||
)
|
||||
)
|
||||
)
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user