Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
RandomPerson3465 committed Sep 1, 2024
1 parent 4e655fa commit 6eab66c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions livecountsnet/lcnet.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,10 @@ window.onload = function () {
document.querySelector('#gainType').addEventListener('input', event => {
updateGainType(event.target.value);
})
updateFontType(counter.settings.fontType);
document.querySelector('#fontType').addEventListener('input', event => {
updateFontType(event.target.value);
})
let tooltipTriggerList = [].slice.call(document.querySelectorAll('[data-bs-toggle="tooltip"]'))
let tooltipList = tooltipTriggerList.map(function (tooltipTriggerEl) {
return new bootstrap.Tooltip(tooltipTriggerEl);
Expand Down

0 comments on commit 6eab66c

Please sign in to comment.