diff options
author | Sarven Capadisli <csarven@status.net> | 2009-11-17 14:10:54 +0000 |
---|---|---|
committer | Sarven Capadisli <csarven@status.net> | 2009-11-17 14:10:54 +0000 |
commit | 0133e569865526be636852538daf8b781b5d2c4f (patch) | |
tree | 52ed1040f973244ae03477a3423397c95c63cfdb | |
parent | 57b7dac8768cc6a182e917ed46cb9ecfbdac2fc5 (diff) |
Changed to bind and removed window name because IE doesn't like names
with '-' in them.
-rw-r--r-- | plugins/Realtime/realtimeupdate.js | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/plugins/Realtime/realtimeupdate.js b/plugins/Realtime/realtimeupdate.js index 706ec8cb5..5582d6d00 100644 --- a/plugins/Realtime/realtimeupdate.js +++ b/plugins/Realtime/realtimeupdate.js @@ -200,10 +200,11 @@ RealtimeUpdate = { 'font-size':'1em' }); $('#showstream #notices_primary').css({'margin-top':'18px'}); - - RT.click(function() { +alert(url); +alert(timeline); + RT.bind('click', function() { window.open(url, - timeline, + '', 'toolbar=no,resizable=yes,scrollbars=yes,status=yes,width=500,height=550'); return false; |