Adding day grid files for resources

This commit is contained in:
Sean Kenny
2014-09-13 13:38:54 +01:00
parent 56219816c9
commit e9cd69918d
3 changed files with 34 additions and 12 deletions
+7
View File
@@ -0,0 +1,7 @@
/* Event-rendering methods for the DayGrid class
----------------------------------------------------------------------------------------------------------------------*/
$.extend(ResourceDayGrid.prototype, {
});
+13
View File
@@ -0,0 +1,13 @@
/* A component that renders a grid of whole-days that runs horizontally. There can be multiple rows, one per week.
----------------------------------------------------------------------------------------------------------------------*/
function ResourceDayGrid(view) {
DayGrid.call(this, view); // call the super-constructor
}
ResourceDayGrid.prototype = createObject(DayGrid.prototype); // declare the super-class
$.extend(ResourceDayGrid.prototype, {
});