mirror of
https://github.com/wahyd4/pinpoint.git
synced 2026-08-16 08:16:15 +10:00
[유치수] [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:
@@ -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()));
|
||||
|
||||
@@ -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();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user