From b620b1df083668819447229c03ea3aaf6fa409fa Mon Sep 17 00:00:00 2001
From: Thomas Bruederli <thomas@roundcube.net>
Date: Mon, 29 Apr 2013 05:52:20 -0400
Subject: [PATCH] Remove moveTo() call which causes problems in Chrome and has no real effect in other browsers (#1488931)

---
 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 58810c2..474a1b8 100644
--- a/program/js/app.js
+++ b/program/js/app.js
@@ -1647,8 +1647,6 @@
 
     // 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;
   };

--
Gitblit v1.9.1