Skip to content

Commit

Permalink
Update chatlog-parser.js
Browse files Browse the repository at this point in the history
  • Loading branch information
ulasbayraktar committed Jun 2, 2024
1 parent 819c8ad commit bd2364d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/chatlog-parser.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ $(document).ready(function() {
$.jStorage.set("lastLineHeight", "0")),
$("input[name='font-label']").bind("input propertychange", function() {
var newSize = parseInt($(this).val());
if (newSize >= 16 && newSize <= 64) {
if (newSize >= 1 && newSize <= 64) {
$(".output").css({
"font-size": newSize + "px",
"line-height": newSize + "px",
Expand Down

0 comments on commit bd2364d

Please sign in to comment.