Skip to content

Commit

Permalink
Changed <> to &lt;&gt;
Browse files Browse the repository at this point in the history
  • Loading branch information
Sam Cattani committed Nov 28, 2024
1 parent a9ede78 commit f4fcb97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion content/body/accessible-pdf-generation.php
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ function base64ToArrayBuffer(base64) {
var binaryString = window.atob(base64);
var binaryLen = binaryString.length;
var bytes = new Uint8Array(binaryLen);
for (var i = 0; i < binaryLen; i++) {
for (var i = 0; i &lt; binaryLen; i++) {
var ascii = binaryString.charCodeAt(i);
bytes[i] = ascii;
}
Expand Down

0 comments on commit f4fcb97

Please sign in to comment.