refactored and cleaned up calendar

This commit is contained in:
Sriram Hariharan
2019-08-10 19:00:16 -05:00
parent 6e60e149c8
commit e877ecaa6b
8 changed files with 442 additions and 401 deletions

View File

@@ -1,2 +1,24 @@
const fadetime = 150;
const butdelay = 75;
class Timing {
static fade_time = 100;
static calendar_fade_time = 100;
static button_delay = 75;
}
class Colors {
static material_colors = ['#4CAF50', '#CDDC39',
'#FFC107', '#2196F3', '#F57C00', '#9C27B0', '#FF5722', '#673AB7',
'#FF5252', '#E91E63', '#009688', '#00BCD4',
'#4E342E', '#424242', '#9E9E9E'
];
}
class Export {
static png_options = {
foreignObjectRendering: true,
logging: true,
removeContainer: true,
async: true,
}
}