Skip to content

Commit a2327bb

Browse files
committed
Publish to gh-pages
1 parent 8153de0 commit a2327bb

10 files changed

+924
-611
lines changed

aps-dashboard.qmd

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ format:
55
dashboard:
66
logo: assets/img/detect-logo.png
77
theme: simplex
8+
output-file: index.html
89
---
910

1011
```{r}
@@ -442,7 +443,7 @@ chart_10 <- ggplot(
442443
linetype = "dashed",
443444
color = "darkblue"
444445
) +
445-
guide_axis(minor.ticks = FALSE)
446+
scale_y_continuous(guide = guide_axis(minor.ticks = FALSE))
446447
447448
ggplotly(chart_10, tooltip = c("x", "fill", "color"))
448449
```
@@ -515,7 +516,7 @@ chart_11 <- ggplot(
515516
) +
516517
theme(legend.position = "none", legend.title = element_blank()) +
517518
labs(x = element_blank(), y = element_blank()) +
518-
guide_axis(minor.ticks = FALSE)
519+
scale_y_continuous(guide = guide_axis(minor.ticks = FALSE))
519520
520521
#TODO: NO VLINE YET SINCE TOOL HAS NOT LAUNCHED
521522
@@ -596,7 +597,7 @@ chart_12 <- ggplot(
596597
linetype = "dashed",
597598
color = "darkblue"
598599
) +
599-
guide_axis(minor.ticks = FALSE)
600+
scale_y_continuous(guide = guide_axis(minor.ticks = FALSE))
600601
601602
ggplotly(chart_12, tooltip = c("x", "fill", "color"))
602603
```
@@ -675,7 +676,7 @@ chart_12 <- ggplot(
675676
linetype = "dashed",
676677
color = "darkblue"
677678
) +
678-
guide_axis(minor.ticks = FALSE)
679+
scale_y_continuous(guide = guide_axis(minor.ticks = FALSE))
679680
680681
ggplotly(chart_12, tooltip = c("x", "fill", "color"))
681682
```
@@ -754,7 +755,7 @@ chart_12 <- ggplot(
754755
linetype = "dashed",
755756
color = "darkblue"
756757
) +
757-
guide_axis(minor.ticks = FALSE)
758+
scale_y_continuous(guide = guide_axis(minor.ticks = FALSE))
758759
759760
ggplotly(chart_12, tooltip = c("x", "fill", "color"))
760761
```
@@ -833,7 +834,7 @@ chart_12 <- ggplot(
833834
linetype = "dashed",
834835
color = "darkblue"
835836
) +
836-
guide_axis(minor.ticks = FALSE)
837+
scale_y_continuous(guide = guide_axis(minor.ticks = FALSE))
837838
838839
ggplotly(chart_12, tooltip = c("x", "fill", "color"))
839840
```
@@ -912,7 +913,7 @@ chart_12 <- ggplot(
912913
linetype = "dashed",
913914
color = "darkblue"
914915
) +
915-
guide_axis(minor.ticks = FALSE)
916+
scale_y_continuous(guide = guide_axis(minor.ticks = FALSE))
916917
917918
ggplotly(chart_12, tooltip = c("x", "fill"))
918919
```

aps-dashboard_files/libs/bootstrap/bootstrap-3a9bb824fc5e6ba61124dce79ecef86c.min.css

Lines changed: 12 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

aps-dashboard_files/libs/bootstrap/bootstrap-dark-3a9bb824fc5e6ba61124dce79ecef86c.min.css

Lines changed: 12 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

aps-dashboard_files/libs/bootstrap/bootstrap.min.css

Lines changed: 0 additions & 12 deletions
This file was deleted.

aps-dashboard_files/libs/quarto-dashboard/quarto-dashboard.js

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -145,8 +145,20 @@ window.document.addEventListener("DOMContentLoaded", function (_event) {
145145
const linkEls = document.querySelectorAll(
146146
".quarto-dashboard-content a:not(.nav-link)"
147147
);
148+
const currentUrl = new URL(window.location.href);
148149
for (const linkEl of linkEls) {
149150
const linkHref = linkEl.getAttribute("href");
151+
// https://github.com/quarto-dev/quarto-cli/issues/9411
152+
// only add the event listener for internal links
153+
try {
154+
const linkUrl = new URL(linkHref);
155+
if (linkUrl.origin !== currentUrl.origin) {
156+
continue;
157+
}
158+
} catch (_e) {
159+
// if the link is not a valid URL, skip it
160+
continue;
161+
}
150162
linkEl.addEventListener("click", () => {
151163
QuartoDashboardUtils.showPage(linkHref);
152164
return false;

aps-dashboard_files/libs/quarto-html/quarto-syntax-highlighting.css renamed to aps-dashboard_files/libs/quarto-html/quarto-syntax-highlighting-0815c480559380816a4d1ea211a47e91.css

Lines changed: 91 additions & 58 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)