Fixes minor typos
This commit is contained in:
parent
b0f8f56650
commit
bd9b267562
1 changed files with 0 additions and 2 deletions
|
@ -214,7 +214,6 @@ select#font-select, select#font-select option {
|
||||||
|
|
||||||
canvas.width = textWidth;
|
canvas.width = textWidth;
|
||||||
canvas.height = paragraphs.length * textHeight*1.35; //for tails
|
canvas.height = paragraphs.length * textHeight*1.35; //for tails
|
||||||
// ctx.font = `${fontSize / 2}px ${font}`;
|
|
||||||
ctx.font = `${fontSize}px ${font}`;
|
ctx.font = `${fontSize}px ${font}`;
|
||||||
|
|
||||||
|
|
||||||
|
@ -227,7 +226,6 @@ select#font-select, select#font-select option {
|
||||||
console.log(canvas.height);
|
console.log(canvas.height);
|
||||||
|
|
||||||
paragraphs.forEach(paragraph => {
|
paragraphs.forEach(paragraph => {
|
||||||
// ctx.letterSpacing = "50px";
|
|
||||||
ctx.fillText(paragraph, 0, y);
|
ctx.fillText(paragraph, 0, y);
|
||||||
y += fontSize;
|
y += fontSize;
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue