summaryrefslogtreecommitdiff
path: root/program/js/app.js
diff options
context:
space:
mode:
authorThomas Bruederli <thomas@roundcube.net>2013-04-29 11:52:20 +0200
committerThomas Bruederli <thomas@roundcube.net>2013-04-29 11:52:20 +0200
commitb620b1df083668819447229c03ea3aaf6fa409fa (patch)
tree44953636e5417bfb182ca52b01318a422acef703 /program/js/app.js
parentc958452d098be0cedf39e96a1ea29b1b5f265067 (diff)
Remove moveTo() call which causes problems in Chrome and has no real effect in other browsers (#1488931)
Diffstat (limited to 'program/js/app.js')
-rw-r--r--program/js/app.js2
1 files changed, 0 insertions, 2 deletions
diff --git a/program/js/app.js b/program/js/app.js
index 58810c24a..474a1b8c3 100644
--- a/program/js/app.js
+++ b/program/js/app.js
@@ -1647,8 +1647,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;
};