Skip to content

Commit

Permalink
fixed TDR
Browse files Browse the repository at this point in the history
  • Loading branch information
shi-amy committed Jan 31, 2025
1 parent 8c27855 commit b26d2bb
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Blogs/blog-fish-n-ships.html
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ <h1 class="title">
<h5 style="margin-top: 20px;">
<i>Fish 'N Ships</i> is the autonomous surface vehicle (ASV) Arcturus has designed for the 2025 RoboBoat competition.
</h5>
<a href="../Pictures/Blogs/TDR_MITArcturus_RB2023.pdf" type="button" class="btn btn-secondary btn-lg btn-block" style="margin-top: 20px;">RoboBoat 2025 Technical Design Report</a>
<a href="../Pictures/Blogs/TDR_MITArcturus_RB2025.pdf" type="button" class="btn btn-secondary btn-lg btn-block" style="margin-top: 20px;">RoboBoat 2025 Technical Design Report</a>
</div>

</div>
Expand Down
Binary file added Pictures/Blogs/TDR_MITArcturus_RB2025.pdf
Binary file not shown.
7 changes: 7 additions & 0 deletions assets/js/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -210,3 +210,10 @@ document.addEventListener("scroll", function () {
}
}
});

jQuery(document).ready(function ($) {
$("li.dropdown a").click(function (e) {
$(this).next("ul.dropdown-menu").css("display", "block");
e.stopPropagation();
});
});

0 comments on commit b26d2bb

Please sign in to comment.