Added on click event to open up anchors in notice items in a new

window for the Realtime plugin's pop-up window.
This commit is contained in:
Sarven Capadisli 2009-11-18 10:42:43 +00:00
parent b5ed698bd2
commit 730b1a211f
1 changed files with 6 additions and 0 deletions

View File

@ -208,6 +208,12 @@ RealtimeUpdate = {
'left':'auto',
'right':'0'
});
$('.notices .entry-title a, .notices .entry-content a').bind('click', function() {
window.open(this.href, '');
return false;
});
}
}