timestamps.js revision 8e6356968671dcd9b963687e2b6e2437dae87314
$.fn.relatizeTimestamps = function() {
$(this).find(".timestamp").each(function(){
var $this = $(this);
var time = moment($this.text());
$this.text(time.fromNow()).attr("title", time.format("LLLL"));
});
return this;
};
$(function(){
// relatize all timestamps on load
$("body").relatizeTimestamps();
})