Skip to content

Commit

Permalink
Fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
tyt2y3 committed Apr 3, 2021
1 parent 729a6ea commit 4aef23d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/reader.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<title>Symcode Reader</title>
<script>
// https://bugs.webkit.org/show_bug.cgi?id=190800
if (!'BigUint64Array' in window) {
if (!('BigUint64Array' in window)) {
window.BigUint64Array = Float64Array;
}
</script>
Expand Down
2 changes: 1 addition & 1 deletion dist/writer.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<title>Symcode Writer</title>
<script>
// https://bugs.webkit.org/show_bug.cgi?id=190800
if (!'BigUint64Array' in window) {
if (!('BigUint64Array' in window)) {
window.BigUint64Array = Float64Array;
}
</script>
Expand Down

0 comments on commit 4aef23d

Please sign in to comment.