Skip to content

Commit

Permalink
adds title in tab button
Browse files Browse the repository at this point in the history
  • Loading branch information
joaovictor3g committed Apr 24, 2024
1 parent 4b6a40d commit 72d97fe
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions web/assets/js/utils/render-functions.js
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,7 @@ export function renderTabs(mode, examples) {
const tabButton = document.createElement("button");
tabButton.innerHTML = `<span>${tab.name}</span>`;
tabButton.className = "tabs-button";
tabButton.title = tab.name;

tabButton.onclick = () => {
document
Expand Down

0 comments on commit 72d97fe

Please sign in to comment.