oms-Calendar/js/Calendar.js
2018-02-03 13:09:09 +01:00

21 lines
576 B
JavaScript

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