From b7a5de49c6aa2cb7485f2c097148a1b2a6f7cec3 Mon Sep 17 00:00:00 2001 From: hide_d Date: Sat, 21 Sep 2019 18:09:37 +0900 Subject: [PATCH] =?UTF-8?q?=ED=91=9C=EA=B8=B0=20=EC=9D=BC=EB=B6=80=20?= =?UTF-8?q?=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hwe/j_server_basic_info.php | 6 ++++-- hwe/templates/tooltip.php | 11 ++++++----- js/entrance.js | 1 + 3 files changed, 11 insertions(+), 7 deletions(-) diff --git a/hwe/j_server_basic_info.php b/hwe/j_server_basic_info.php index f730c1f7..ce39ee90 100644 --- a/hwe/j_server_basic_info.php +++ b/hwe/j_server_basic_info.php @@ -54,8 +54,9 @@ if(file_exists(__dir__.'/.htaccess')){ } $auto_info = join(', ', array_values($auto_info)); $otherTextInfo[] = $templates->render('tooltip', [ - 'text'=>'자동행동', + 'text'=>'자율행동', 'info'=>$auto_info, + 'style'=>'text-decoration:underline' ]); } @@ -131,8 +132,9 @@ if($admin['autorun_user']['limit_minutes']??false){ } $auto_info = join(', ', array_values($auto_info)); $otherTextInfo[] = $templates->render('tooltip', [ - 'text'=>'자동행동', + 'text'=>'자율행동', 'info'=>$auto_info, + 'style'=>'text-decoration:underline' ]); } diff --git a/hwe/templates/tooltip.php b/hwe/templates/tooltip.php index 6ecbc2ed..32fcac20 100644 --- a/hwe/templates/tooltip.php +++ b/hwe/templates/tooltip.php @@ -1,5 +1,6 @@ - - - - - \ No newline at end of file +> \ No newline at end of file diff --git a/js/entrance.js b/js/entrance.js index 0657302d..2f390e1b 100644 --- a/js/entrance.js +++ b/js/entrance.js @@ -99,6 +99,7 @@ function Entrance_drawServerList(serverInfos){ $serverHtml.append( TemplateEngine(serverReservedTemplate, result.reserved) ); + initTooltip($serverHtml); return; }