From 795011da16514086645ad006f62e4a10e6f74629 Mon Sep 17 00:00:00 2001 From: Ryan McGeary Date: Tue, 14 Oct 2008 22:55:20 -0400 Subject: [PATCH] Fix for nasty typo --- jquery.timeago.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jquery.timeago.js b/jquery.timeago.js index c600174..34cdd7f 100644 --- a/jquery.timeago.js +++ b/jquery.timeago.js @@ -1,5 +1,5 @@ /* - * timeago: a jQuery plugin, version: 0.6.1 (10/14/2008) + * timeago: a jQuery plugin, version: 0.6.2 (10/14/2008) * @requires jQuery v1.2 or later * * Timeago is a jQuery plugin that makes it easy to support automatically @@ -52,7 +52,7 @@ if (this.settings.allowFuture) { if (distanceMillis < 0) { prefix = $l.prefixFromNow; - suffix = $l.suffixAgo || $l.fromNow; + suffix = $l.suffixFromNow || $l.fromNow; } distanceMillis = Math.abs(distanceMillis); }