Fix moveList + progress on game navigation system
[vchess.git] / public / javascripts / utils / datetime.js
CommitLineData
c794dbb8
BA
1function zeroPad(x)
2{
3 return (x<10 ? "0" : "") + x;
4}
5
6function getDate(d)
7{
8 return d.getFullYear() + '-' + (d.getMonth()+1) + '-' + zeroPad(d.getDate());
9}
10
11function getTime(d)
12{
13 return zeroPad(d.getHours()) + ":" + zeroPad(d.getMinutes()) + ":" +
14 zeroPad(d.getSeconds());
15}