Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
DeadlyArtist committed Jul 12, 2024
1 parent 971c086 commit d50af72
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion js/coreHelpers.js
Original file line number Diff line number Diff line change
Expand Up @@ -145,4 +145,8 @@ function onBodyCreated(callback) {
}
}

const isFirefox = navigator.userAgent.toLowerCase().includes('firefox');
const isFirefox = navigator.userAgent.toLowerCase().includes('firefox');

function intDivision(a, b) {
return Math.floor(a / b);
}

0 comments on commit d50af72

Please sign in to comment.