fix bug with wrapping

This commit is contained in:
Sam 2013-06-11 06:51:02 +10:00
parent a92bb46966
commit eed5875505
1 changed files with 1 additions and 1 deletions

View File

@ -103,7 +103,7 @@ Discourse.Formatter = (function(){
relativeAgeMedium = function(date, options){
var displayDate, fiveDaysAgo, oneMinuteAgo, fullReadable, leaveAgo, val;
var wrapInSpan = options.wrapInSpan ? true : false;
var wrapInSpan = options.wrapInSpan === false ? false : true;
leaveAgo = options.leaveAgo;
var distance = Math.round((new Date() - date) / 1000);