This commit is contained in:
David Ascher 2010-09-07 23:23:40 -07:00
Родитель 833f04c8b6
Коммит 1217aba0ce
2 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -38,7 +38,6 @@ require.def("friendly", function () {
"additional" : date.toLocaleTimeString(),
"utc" : date.toUTCString(),
"locale" : date.toLocaleString() };
/* some kind of error */
if (day_diff < 0) {
dObj.friendly = "in the future";

Просмотреть файл

@ -53,6 +53,9 @@ function (require, $, fn, rdapi, jig) {
$(".body").each(function() {
$(this).html(linkify($(this).text()));
});
$(".username").each(function() {
$(this).html(linkify($(this).text()));
});
}
}
});