update 1908121140

This commit is contained in:
vkservicesllc
2019-08-12 11:40:57 -04:00
parent 7d739d58b0
commit 7d36589efb
16 changed files with 1615 additions and 21 deletions

View File

@@ -31,22 +31,6 @@ function WeeklySpreadsheet(start, key) {
// Assistance
function Months() {
this.short = [
'Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun',
'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'
];
// this.long = [
// 'January', 'February', 'March',
// 'April', 'May', 'June',
// 'July', 'August', 'September',
// 'October', 'November', 'December'
// ];
}
function addDays(date, days) {
return new Date(date.getTime() + days * 24 * 60 * 60 * 1000);
}