From 83596547624464f9f0c857a15f26050d2acd0b61 Mon Sep 17 00:00:00 2001 From: Jan Schneider Date: Fri, 12 Feb 2010 14:20:07 +0100 Subject: [PATCH] Show due date, even if the task isn't due yet. --- kronolith/js/kronolith.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kronolith/js/kronolith.js b/kronolith/js/kronolith.js index c0899691e..552334158 100644 --- a/kronolith/js/kronolith.js +++ b/kronolith/js/kronolith.js @@ -1691,9 +1691,9 @@ KronolithCore = { now = new Date(); if (!now.isBefore(date)) { col.addClassName('kronolithTaskDue'); - col.insert(new Element('SPAN', { 'class': 'kronolithSep' }).update(' · ')); - col.insert(new Element('SPAN', { 'class': 'kronolithDate' }).update(date.toString(Kronolith.conf.date_format))); } + col.insert(new Element('SPAN', { 'class': 'kronolithSep' }).update(' · ')); + col.insert(new Element('SPAN', { 'class': 'kronolithDate' }).update(date.toString(Kronolith.conf.date_format))); } if (!Object.isUndefined(task.value.sd)) { -- 2.11.0