From 83b59c6ea8dcd8b7f9d82942f8ce4c664b67347e Mon Sep 17 00:00:00 2001 From: BBaoVanC Date: Sun, 29 May 2022 15:17:21 -0500 Subject: [PATCH] Set rows of comment edit box to 5 --- isso/js/app/isso.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/isso/js/app/isso.js b/isso/js/app/isso.js index 61dc198e2..fbf958a3d 100644 --- a/isso/js/app/isso.js +++ b/isso/js/app/isso.js @@ -277,7 +277,7 @@ var insert = function(comment, scrollIntoView) { toggler.canceled = false; api.view(comment.id, 1).then(function(rv) { var textarea = $.new("textarea.isso-textarea"); - textarea.setAttribute("rows", 10); + textarea.setAttribute("rows", 5); textarea.setAttribute("minlength", 3); textarea.setAttribute("maxlength", 65535);