From: Paul Moore Date: Tue, 8 Sep 2009 15:01:24 +0000 (-0400) Subject: javascript: Clean up some CSS in the main table X-Git-Url: https://code.delx.au/comingnext/commitdiff_plain/d728176b73a46619ccb65b3f374d912febcac0f5?ds=sidebyside javascript: Clean up some CSS in the main table Remove some of the "span" tags in the main table and assign the CSS styles to the "td" tags, also fix up some of the table columns a bit. --- diff --git a/comingNext/index.html b/comingNext/index.html index 3684b84..7fa1d5d 100644 --- a/comingNext/index.html +++ b/comingNext/index.html @@ -472,24 +472,24 @@ function updateData() var dateStr = formatDate(date, entryDate); if (entry.Type == 'ToDo' || entry.Type == 'Anniversary' || entry.Type == 'DayEvent' || entry.Type == 'Reminder') { if (isToday(date)) - entriesHtml += '' + dateStr + ' '; + entriesHtml += '' + dateStr + ''; else - entriesHtml += '' + weekDay + '' + dateStr + ''; + entriesHtml += '' + weekDay + '' + dateStr + ''; } else if (entry.Type == 'Meeting') { if (showCombinedDateTime) { if (isToday(date)) - entriesHtml += '' + time + ' '; + entriesHtml += '' + time + ''; else - entriesHtml += '' + weekDay + '' + dateStr + ''; + entriesHtml += '' + weekDay + '' + dateStr + ''; } else { if (isToday(date)) - entriesHtml += '' + dateStr + ' ' + time + ' '; + entriesHtml += '' + dateStr + '' + time + ''; else - entriesHtml += '' + weekDay + '' + dateStr + '' + time + ''; + entriesHtml += '' + weekDay + '' + dateStr + ' ' + time + ''; } } } - entriesHtml += '' + Summary + ''; + entriesHtml += Summary + ''; } } entriesHtml += '';