Skip to content

Commit

Permalink
Fix teaching (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
amrabed authored Aug 6, 2024
1 parent ec8add9 commit 050ad8c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion teaching/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ <h4>“If you can't explain it simply, you don't understand it well enough”</h
<div class="container">
<div class="text-center">
<h2>Teaching Philosophy</h2>
<hr>
<hr class="mx-auto">
</div>
<div class="col-lg-8 col-lg-offset-2 mx-auto text-justify" style="margin-top: 50px">
<p>
Expand Down
4 changes: 2 additions & 2 deletions teaching/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ function loadCourses(file, id, title) {

const chevron = item.append("a")
.attr("class", "btn btn-link")
.attr("data-toggle", "collapse")
.attr("data-target", d => "#" + d.id)
.attr("data-bs-toggle", "collapse")
.attr("data-bs-target", d => "#" + d.id)
.attr("aria-expanded", "false");

chevron.append("span")
Expand Down

0 comments on commit 050ad8c

Please sign in to comment.