From b81652f439c0c414880077337e1165f731a87eb1 Mon Sep 17 00:00:00 2001 From: jiro4989 Date: Mon, 3 Feb 2020 22:52:06 +0900 Subject: [PATCH 1/2] =?UTF-8?q?:art:=20=E7=AD=89=E5=B9=85=E3=83=95?= =?UTF-8?q?=E3=82=A9=E3=83=B3=E3=83=88=E3=81=A7=E8=A1=A8=E7=A4=BA=E3=81=99?= =?UTF-8?q?=E3=82=8B=E3=82=88=E3=81=86=E3=81=AB=E5=A4=89=E6=9B=B4=20#125?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- websh_front/public/index.html | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/websh_front/public/index.html b/websh_front/public/index.html index 428ab56..db08b93 100644 --- a/websh_front/public/index.html +++ b/websh_front/public/index.html @@ -7,6 +7,15 @@ + + + From ab6568b297b2d3665ccfa0f139e181ad67c3a71a Mon Sep 17 00:00:00 2001 From: jiro4989 Date: Mon, 3 Feb 2020 22:59:02 +0900 Subject: [PATCH 2/2] =?UTF-8?q?:wrench:=20=E5=87=BA=E5=8A=9B=E3=82=A8?= =?UTF-8?q?=E3=83=AA=E3=82=A2=E3=81=AF=E3=83=86=E3=82=AD=E3=82=B9=E3=83=88?= =?UTF-8?q?=E5=85=A5=E5=8A=9B=E4=B8=8D=E5=8F=AF=E3=81=AB=E5=A4=89=E6=9B=B4?= =?UTF-8?q?=20#128?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- websh_front/src/index.nim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/websh_front/src/index.nim b/websh_front/src/index.nim index e85e8a0..c71e05f 100644 --- a/websh_front/src/index.nim +++ b/websh_front/src/index.nim @@ -152,7 +152,7 @@ proc createDom(): VNode = text &"{countWord($outputStdout)} chars, " text &"""{$($outputStdout).split("\n").len} lines""" tdiv: - textarea(class = "textarea is-success", rows = "8"): + textarea(class = "textarea is-success", rows = "8", readonly="readonly"): text outputStdout article(class = "tile is-child notification"): p(class = "title"): text "stderr" @@ -161,7 +161,7 @@ proc createDom(): VNode = text &"{countWord($outputStderr)} chars, " text &"""{$($outputStderr).split("\n").len} lines""" tdiv: - textarea(class = "textarea is-warning", rows = "4"): + textarea(class = "textarea is-warning", rows = "4", readonly="readonly"): text outputStderr article(class = "tile is-child notification"): p(class = "title"): text "images"