mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-06-05 22:09:38 +02:00
Miglioramento modulo Statistiche
This commit is contained in:
25
modules/statistiche/js/calendar.js
Normal file
25
modules/statistiche/js/calendar.js
Normal file
@@ -0,0 +1,25 @@
|
||||
class Calendar {
|
||||
constructor(info, id){
|
||||
this.info = info;
|
||||
this.id = id;
|
||||
|
||||
this.elements = new Array();
|
||||
}
|
||||
|
||||
addElement(object){
|
||||
this.elements.push(object);
|
||||
}
|
||||
|
||||
update(start, end) {
|
||||
this.elements.forEach(function (element) {
|
||||
element.update(start, end);
|
||||
});
|
||||
}
|
||||
|
||||
remove() {
|
||||
this.elements.forEach(function (element) {
|
||||
element.remove();
|
||||
});
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user