From 3a48c6fc01cb87ae910d8efaa2712aa1ba2d5cd0 Mon Sep 17 00:00:00 2001 From: Chisu Yu Date: Thu, 18 Jul 2013 02:24:45 +0000 Subject: [PATCH] =?UTF-8?q?[=EC=9C=A0=EC=B9=98=EC=88=98]=20[NOBTS]=20?= =?UTF-8?q?=EC=83=81=EB=8B=A8=20=EB=82=B4=EB=B9=84=EA=B2=8C=EC=9D=B4?= =?UTF-8?q?=EC=85=98=EB=B0=94=EC=9D=98=20dateformat=EB=B3=80=EA=B2=BD.=20y?= =?UTF-8?q?yyy/mm/dd?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: http://svn.bds.nhncorp.com/pe/hippo-web/trunk@1995 84d0f5b1-2673-498c-a247-62c4ff18d310 --- src/main/webapp/components/pinpoint/pinpoint.js | 4 ++-- src/main/webapp/index.html | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/webapp/components/pinpoint/pinpoint.js b/src/main/webapp/components/pinpoint/pinpoint.js index fb83be6dc..3c203d9c3 100644 --- a/src/main/webapp/components/pinpoint/pinpoint.js +++ b/src/main/webapp/components/pinpoint/pinpoint.js @@ -19,9 +19,9 @@ function formatDate(date, ignoreSeconds) { var dateStr = []; dateStr.push(date.getFullYear()); - dateStr.push("-"); + dateStr.push("/"); dateStr.push(padZero(date.getMonth())); - dateStr.push("-"); + dateStr.push("/"); dateStr.push(padZero(date.getDate())); dateStr.push(" "); dateStr.push(padZero(date.getHours())); diff --git a/src/main/webapp/index.html b/src/main/webapp/index.html index 1079e7b4c..21f5a4d51 100644 --- a/src/main/webapp/index.html +++ b/src/main/webapp/index.html @@ -213,7 +213,7 @@ $(document).ready(function () { var f = formatDate(new Date(Nav.getQueryStartTime()), true); var e = formatDate(new Date(Nav.getQueryEndTime()), true); - $("#queryTime").html(f + ' ~
' + e); + $("#queryTime").html(f + ' ~
' + e); $("#progressbar").show();