diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2013-04-29 11:52:20 +0200 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2013-04-29 11:52:34 +0200 |
commit | 5bc49fa22a4aa2dfff5a5ca44959a3b8ec9dde80 (patch) | |
tree | 26a47c74d7a89ffb38a04c0b42a811e8c96068bc /program/js | |
parent | fb2f066370d1ef30ff6d68ab3f20c17f861a5286 (diff) |
Remove moveTo() call which causes problems in Chrome and has no real effect in other browsers (#1488931)
Diffstat (limited to 'program/js')
-rw-r--r-- | program/js/app.js | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/program/js/app.js b/program/js/app.js index 72425b455..4017fa356 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -1690,8 +1690,6 @@ function rcube_webmail() // focus window, delayed to bring to front window.setTimeout(function() { extwin.focus(); }, 10); - // position window with setTimeout for Chrome (#1488931) - window.setTimeout(function() { extwin.moveTo(l,t); }, bw.chrome ? 100 : 10); return wname; }; |