|
|
|
|
@ -91,7 +91,7 @@ var weekMap = new Array("SUN.", "MON.", "TUE.", "WED.", "THU.", "FRI.", "SAT.");
|
|
|
|
|
var monthMap = new Array("Jan.", "Feb.", "Mar.", "Apr.", "May.", "Jun.", "Jul.", "Aug.", "Sept.", "Oct.", "Nov.", "Dec.");
|
|
|
|
|
|
|
|
|
|
function formatDate(date) {
|
|
|
|
|
return monthMap[(date.getMonth())] + date.getDate() + '.';
|
|
|
|
|
return monthMap[(date.getMonth())] + ' ' + date.getDate();
|
|
|
|
|
}
|
|
|
|
|
function formatWeek(date) {
|
|
|
|
|
return weekMap[date.getDay()];
|
|
|
|
|
|