Draw a line to indicate new (unread) notice in a timeline since window

blur. Inspired by Pidgin's Markerline plugin.
This commit is contained in:
Sarven Capadisli 2009-09-27 14:06:39 +00:00
parent 22332555cf
commit 60335fcbdf
1 changed files with 13 additions and 1 deletions

View File

@ -14,6 +14,18 @@ RealtimeUpdate = {
RealtimeUpdate._replyurl = replyurl;
RealtimeUpdate._favorurl = favorurl;
RealtimeUpdate._deleteurl = deleteurl;
$(window).blur(function() {
$('#notices_primary .notice').css({
'border-top-color':$('#notices_primary .notice:last').css('border-top-color'),
'border-top-style':'dotted'
});
$('#notices_primary .notice:first').css({
'border-top-color':'#AAAAAA',
'border-top-style':'solid'
});
});
},
receive: function(data)
@ -151,7 +163,7 @@ RealtimeUpdate = {
$('#form_notice label[for=notice_data-text], h1').css({'display': 'none'});
$('.notices li:first-child').css({'border-top':'none'});
$('.notices li:first-child').css({'border-top-color':'transparent'});
$('#form_notice label[for="notice_data-attach"], #form_notice #notice_data-attach').css({'top':'0'});