(function($){
function prettyDate(time){
var date = new Date((time || "").replace(/-/g,"/").replace(/[TZ]/g," ")),
diff = (((new Date()).getTime() - date.getTime()) / 1000),
day_diff = Math.floor(diff / 86400);
if ( isNaN(day_diff) || day_diff < 0 || day_diff >= 31 )
return;
return day_diff == 0 && (
diff < 60 && "just now" ||
diff < 120 && "1 minute ago" ||
diff < 3600 && Math.floor( diff / 60 ) + " minutes ago" ||
diff < 7200 && "1 hour ago" ||
diff < 86400 && Math.floor( diff / 3600 ) + " hours ago") ||
day_diff == 1 && "Yesterday" ||
day_diff < 7 && day_diff + " days ago" ||
day_diff < 31 && Math.ceil( day_diff / 7 ) + " weeks ago";
}
if ( typeof jQuery != "undefined" )
jQuery.fn.prettyDate = function(){
return this.each(function(){
var date = prettyDate(this.title);
if ( date )
jQuery(this).text( date );
});
};
$.expr[':'].ext = function(obj){
var left = function(s,n) {
return s.substring(0, n);
}
return obj.href != undefined && obj.href != "" && !obj.href.match(/^mailto\:/) && (obj.hostname != location.hostname) && (left(obj.href,10)!="javascript") && (left(obj.href,1)!="#");
};
$(function() {
var _links = [];
var _parms = [];
$('.saq-time').each(function(){
$(this).html(prettyDate($(this).html()));
});
$('a:ext').attr('target','_blank').each(function(i,n){
$(this).mousedown(function(){ var _href=
$.ajax({ type: 'POST',
url: 'https://nelson.co.nz/wp-content/plugins/wp-click-info/wp-click-info.js.php?ver=1.26_checkbox',
data: { 'saqtrc': "1", 'target':$(n).attr('href'),'title':$(n).attr('title'),'postid':$(n).attr('id'),'rel':$(n).attr('rel') },
error:function(d,a,f){
//alert('WP Click Info: Error while tracking URL.\n'+a+'\n'+d.responseText);
},
dataType:'text'
});
$(this).attr('href',$(this).data('href'));
return true;
});
_links[$(this).attr('href')] = $(this);
_parms.push($(this).attr('href'));
});
});
})(jQuery);