mirror of
https://github.com/Karaka-Management/oms-Calendar.git
synced 2026-01-11 07:08:43 +00:00
21 lines
576 B
JavaScript
Executable File
21 lines
576 B
JavaScript
Executable File
(function (omsModule, undefined) {
|
|
omsModule.Calendar = function () {
|
|
this.layout = omsModule.Calendar.layout.BLOCKS;
|
|
this.interval = null;
|
|
this.selectedElement = null;
|
|
this.subCalendars = [];
|
|
|
|
};
|
|
|
|
omsModule.Calendar.prototype.render = function () {
|
|
};
|
|
|
|
omsModule.Calendar.prototype.renderBlocks = function () {
|
|
};
|
|
|
|
omsModule.Calendar.prototype.renderList = function () {
|
|
};
|
|
|
|
omsModule.Calendar.prototype.renderTimeline = function () {
|
|
};
|
|
}(window.omsModule = window.omsModule || {})); |