From 5ecb2fd1dc917d01d17032acc5c6b80cd379598b Mon Sep 17 00:00:00 2001 From: hamed naeemaei Date: Wed, 24 Jan 2024 00:45:32 +0330 Subject: [PATCH] 65150: Fix greater than 9 digits line number hidden bug in mobile devices --- static/jquery-linedtextarea.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/static/jquery-linedtextarea.js b/static/jquery-linedtextarea.js index 4431e952..fe2ffd62 100644 --- a/static/jquery-linedtextarea.js +++ b/static/jquery-linedtextarea.js @@ -24,9 +24,8 @@ var textarea = $(this); /* Wrap the text area in the elements we need */ - textarea.wrap("
"); - textarea.width("97%"); - textarea.parent().prepend("
"); + textarea.wrap("
"); + textarea.parent().prepend("
"); var linesDiv = textarea.parent().find(".lines"); var scroll = function(tn) {