diff options
author | Sarven Capadisli <csarven@status.net> | 2009-09-23 22:02:42 +0000 |
---|---|---|
committer | Sarven Capadisli <csarven@status.net> | 2009-09-23 22:02:42 +0000 |
commit | 1f12993a4ddad8eba29c604c55f6b82d08dc0127 (patch) | |
tree | de50bd3c22f78e438c2fd11a4748a050fe690b0e /plugins/Realtime/realtimeupdate.js | |
parent | ddb9518c9949989f99c3e7b0323c9bbd01c1d5ee (diff) |
Added JavaScript to initialize the poped Window
Diffstat (limited to 'plugins/Realtime/realtimeupdate.js')
-rw-r--r-- | plugins/Realtime/realtimeupdate.js | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/plugins/Realtime/realtimeupdate.js b/plugins/Realtime/realtimeupdate.js index 2910e4a80..4fda5079d 100644 --- a/plugins/Realtime/realtimeupdate.js +++ b/plugins/Realtime/realtimeupdate.js @@ -135,6 +135,13 @@ RealtimeUpdate = { return false; }); + }, + + initPopupWindow: function() + { + window.resizeTo(575, 640); + $('address').hide(); + $('#content').css({'width':'92%'}); } } |