jQuery( function ( $ ) {
if ($('#contextual-help-link-wrap .show-recently-viewed').length == 0)
{
$("#screen-meta-links").append('
');
var html = '';
if ( Object.keys(propertyhive_admin_recently_viewed.recently_viewed).length > 0 )
{
html += '';
}
else
{
html += 'No recently viewed items to display
';
}
$("#screen-meta-links").append('');
$('body').on('click', '#contextual-help-link-wrap .show-recently-viewed', function(e)
{
e.preventDefault();
jQuery('.ph-recently-viewed-popup').css({
top: $(this).position().top + $(this).outerHeight(),
right: $(document).width() - ($(this).parent().offset().left + $(this).parent().outerWidth())
}).fadeToggle('fast');
});
}
});