diff options
author | Sarven Capadisli <csarven@status.net> | 2009-09-23 17:22:51 +0000 |
---|---|---|
committer | Sarven Capadisli <csarven@status.net> | 2009-09-23 17:22:51 +0000 |
commit | 13976f5796f24725280f4ff33901349df4668f50 (patch) | |
tree | 55ac6916e3cea3a09071b3e3a4dd5fb8941cb904 | |
parent | bef4a8b6ba9e19f2ec629031444279ca76f17bcf (diff) |
JavaScript fixes for IE
-rw-r--r-- | plugins/Realtime/realtimeupdate.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/Realtime/realtimeupdate.js b/plugins/Realtime/realtimeupdate.js index da2f9ed3a..d034deef1 100644 --- a/plugins/Realtime/realtimeupdate.js +++ b/plugins/Realtime/realtimeupdate.js @@ -17,7 +17,7 @@ $(document).ready(function() { $('#realtime_timeline').click(function() { window.open($(this).parent('a').attr('href')+'?realtime=1', - $(this).parent('a').attr('title'), + $('body').attr('id'), 'toolbar=no,resizable=yes,scrollbars=yes,status=yes'); return false; @@ -25,8 +25,8 @@ $(document).ready(function() { } else { window.resizeTo(575, 640); - address = $('address'); - content = $('#content'); + var address = $('address'); + var content = $('#content'); $('body').html(address); $('address').hide(); $('body').append(content); |