diff options
author | Sarven Capadisli <csarven@status.net> | 2009-11-18 10:43:55 +0000 |
---|---|---|
committer | Sarven Capadisli <csarven@status.net> | 2009-11-18 10:43:55 +0000 |
commit | edf9b38637cd48b45c9675247bb3243138d98ffb (patch) | |
tree | 0111a3a8606b44edeb863170535d1b5581c1dca2 | |
parent | 730b1a211f9d28dc33c67cacfda8538ec7196e8f (diff) |
Changed window open name to '' because IE doesn't compute names that
include the '-' character.
-rw-r--r-- | plugins/Realtime/realtimeupdate.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Realtime/realtimeupdate.js b/plugins/Realtime/realtimeupdate.js index 3a1e9683f..aa4c6c15f 100644 --- a/plugins/Realtime/realtimeupdate.js +++ b/plugins/Realtime/realtimeupdate.js @@ -180,7 +180,7 @@ RealtimeUpdate = { RT.click(function() { window.open(url, - timeline, + '', 'toolbar=no,resizable=yes,scrollbars=yes,status=yes,width=500,height=550'); return false; |