mirror of
https://github.com/wassname/fullcalendar.git
synced 2026-07-26 13:18:16 +08:00
Adding day grid files for resources
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
|
||||
/* Event-rendering methods for the DayGrid class
|
||||
----------------------------------------------------------------------------------------------------------------------*/
|
||||
|
||||
$.extend(ResourceDayGrid.prototype, {
|
||||
|
||||
});
|
||||
@@ -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, {
|
||||
|
||||
});
|
||||
Reference in New Issue
Block a user