Skip to content

Commit

Permalink
Fix legacy browser handling
Browse files Browse the repository at this point in the history
  • Loading branch information
ewoerner committed Sep 22, 2024
1 parent 319ecb7 commit f5751d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
<script>
// When promises are not supported, show the legacy notice
function showLegacyNotice() {
let elem = document.getElementById('legacy_browser');
var elem = document.getElementById('legacy_browser');
if(elem) elem.style.display = 'block';
}
if(!window.Promise){
Expand Down

0 comments on commit f5751d2

Please sign in to comment.