Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Fix the header links by opening them in a new tab #605

Merged
merged 1 commit into from
Nov 27, 2023
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
18 changes: 12 additions & 6 deletions HelpPage/doc/docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -112,15 +112,18 @@ const config = {
items: [
{
href: "/apk/",
label: "Flash Robot Controller APK"
label: "Flash Robot Controller APK",
target: '_blank'
},
{
href: "/legacy-apk/",
label: "Download Driver Station APK"
label: "Download Driver Station APK",
target: '_blank'
},
{
href: "/imgutil/",
label: "Upload Images to robotics.xbhs.com"
label: "Upload Images to robotics.xbhs.com",
target: '_blank'
},
]
},
Expand All @@ -131,15 +134,18 @@ const config = {
items: [
{
href: "/javadoc/",
label: "Javadoc (all)"
label: "Javadoc (all)",
target: '_blank'
},
{
href: "/javadoc/-team-code/org.firstinspires.ftc.teamcode.features/index.html",
label: "Javadoc (features)"
label: "Javadoc (features)",
target: '_blank'
},
{
href: "/javadoc/-team-code/org.firstinspires.ftc.teamcode.opmodes/index.html",
label: "Javadoc (opmodes)"
label: "Javadoc (opmodes)",
target: '_blank'
},
]
},
Expand Down