|
|
@@ -76,7 +76,7 @@ var AgendaView = fcViews.agenda = View.extend({
|
|
|
this.timeGrid.renderDates();
|
|
|
|
|
|
// the <hr> that sometimes displays under the time-grid
|
|
|
- this.bottomRuleEl = $('<hr class="' + this.widgetHeaderClass + '"/>')
|
|
|
+ this.bottomRuleEl = $('<hr class="fc-divider ' + this.widgetHeaderClass + '"/>')
|
|
|
.appendTo(this.timeGrid.el); // inject it into the time-grid
|
|
|
|
|
|
if (this.dayGrid) {
|
|
|
@@ -118,19 +118,19 @@ var AgendaView = fcViews.agenda = View.extend({
|
|
|
renderHtml: function() {
|
|
|
return '' +
|
|
|
'<table>' +
|
|
|
- '<thead>' +
|
|
|
+ '<thead class="fc-head">' +
|
|
|
'<tr>' +
|
|
|
'<td class="' + this.widgetHeaderClass + '">' +
|
|
|
this.timeGrid.headHtml() + // render the day-of-week headers
|
|
|
'</td>' +
|
|
|
'</tr>' +
|
|
|
'</thead>' +
|
|
|
- '<tbody>' +
|
|
|
+ '<tbody class="fc-body">' +
|
|
|
'<tr>' +
|
|
|
'<td class="' + this.widgetContentClass + '">' +
|
|
|
(this.dayGrid ?
|
|
|
'<div class="fc-day-grid"/>' +
|
|
|
- '<hr class="' + this.widgetHeaderClass + '"/>' :
|
|
|
+ '<hr class="fc-divider ' + this.widgetHeaderClass + '"/>' :
|
|
|
''
|
|
|
) +
|
|
|
'<div class="fc-time-grid-container">' +
|