[유치수] [NOBTS] 상단 내비게이션바의 dateformat변경. yyyy/mm/dd

git-svn-id: http://svn.bds.nhncorp.com/pe/hippo-web/trunk@1995 84d0f5b1-2673-498c-a247-62c4ff18d310
This commit is contained in:
Chisu Yu
2013-07-18 02:24:45 +00:00
parent 00bc6a4209
commit 3a48c6fc01
2 changed files with 3 additions and 3 deletions
@@ -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()));
+1 -1
View File
@@ -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 + ' ~<br/>' + e);
$("#queryTime").html(f + ' ~ <br/>' + e);
$("#progressbar").show();