]> jfr.im git - irc/quakenet/qwebirc.git/blobdiff - js/ui/frontends/qui.js
attempt to fix the sometimes visible reflow issue at startup
[irc/quakenet/qwebirc.git] / js / ui / frontends / qui.js
index 1d523824de71b972dc0929f687515e610dadce44..0f8fed76d7d54aadf34bbd4c14046596391d59a3 100644 (file)
@@ -69,7 +69,13 @@ qwebirc.ui.QUI = new Class({
 
     this.createInput();
     this.reflow();
-    this.reflow.delay(100); /* Konqueror fix */
+    for(var i=50;i<1000;i+=50)
+      this.reflow.delay(i, true);
+    for(var i=1000;i<2000;i+=100)
+      this.reflow.delay(i);
+    for(var i=2000;i<15000;i+=500)
+      this.reflow.delay(i);
+
     this.setSideTabs(this.uiOptions.SIDE_TABS);
 
   },