From: Jan Schneider Date: Fri, 12 Feb 2010 13:20:07 +0000 (+0100) Subject: Show due date, even if the task isn't due yet. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=83596547624464f9f0c857a15f26050d2acd0b61;p=horde.git Show due date, even if the task isn't due yet. --- 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)) {