oms-Calendar/js/Calendar.js

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 || {}));