Skip to content

Commit 00fadcc

Browse files
committed
added missing semicolons
1 parent 4e564dd commit 00fadcc

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

public/js/commandline.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -258,28 +258,28 @@ let commandsFontSize = {
258258
id: "changeFontSize1",
259259
display: "1x",
260260
exec: () => {
261-
changeFontSize(1)
261+
changeFontSize(1);
262262
}
263263
},
264264
{
265265
id: "changeFontSize125",
266266
display: "1.25x",
267267
exec: () => {
268-
changeFontSize(125)
268+
changeFontSize(125);
269269
}
270270
},
271271
{
272272
id: "changeFontSize15",
273273
display: "1.5x",
274274
exec: () => {
275-
changeFontSize(15)
275+
changeFontSize(15);
276276
}
277277
},
278278
{
279279
id: "changeFontSize2",
280280
display: "2x",
281281
exec: () => {
282-
changeFontSize(2)
282+
changeFontSize(2);
283283
}
284284
}
285285
]

0 commit comments

Comments
 (0)