Created addPop() for Realtime plugin and added param to include iconurl

This commit is contained in:
Sarven Capadisli
2009-09-23 21:58:35 +00:00
parent bdbc2cb8de
commit 4d4bb089a5
2 changed files with 26 additions and 3 deletions

View File

@@ -111,9 +111,30 @@ RealtimeUpdate = {
return dl;
},
addPopup: function(url, title)
addPopup: function(url, title, iconurl)
{
// FIXME: need to add the realtime popup button here
$('#site_nav_local_views .current a').append('<button id="realtime_timeline" title="Real-time pop window">&#8599;</button>');
$('#realtime_timeline').css({
'margin':'2px 0 0 11px',
'background':'transparent url('+ iconurl + ') no-repeat 45% 45%',
'text-indent':'-9999px',
'width':'16px',
'height':'16px',
'padding':'0',
'display':'block',
'float':'right',
'border':'none',
'cursor':'pointer'
});
$('#realtime_timeline').click(function() {
window.open(url,
title,
'toolbar=no,resizable=yes,scrollbars=yes,status=yes');
return false;
});
}
}