/**
* Main layout blocks
*/
-#toolbar { position:absolute; top:0px; width:100%; background-color:#1B1B1B; font-size:0.9em; }
+#toolbar { position:absolute; top:0px; width:100%; background-color:#1B1B1B; font-size:0.9em; display:none; }
#panels { position:absolute; left:0px; right:200px; bottom:100px; top:100px; }
#memberlists { position:absolute; right:0px; width:200px; bottom:100px; top:100px; overflow-y:auto; }
-#controlbox { position: absolute; bottom:0px; width:100%; background-color:#1B1B1B; }
+#controlbox { position: absolute; bottom:0px; width:100%; background-color:#1B1B1B; display:none; }
var that = this;\r
\r
if (!instant) {\r
- $('#toolbar').slideUp();\r
- $('#controlbox').slideUp(function () { that.doLayout(); });\r
+ $('#toolbar').slideUp({queue: false, duration: 400, step: this.doLayout});\r
+ $('#controlbox').slideUp({queue: false, duration: 400, step: this.doLayout});\r
} else {\r
$('#toolbar').slideUp(0);\r
$('#controlbox').slideUp(0);\r
+ this.doLayout();\r
}\r
},\r
\r
var that = this;\r
\r
if (!instant) {\r
- $('#toolbar').slideDown();\r
- $('#controlbox').slideDown(function () { that.doLayout(); });\r
+ $('#toolbar').slideDown({queue: false, duration: 400, step: this.doLayout});\r
+ $('#controlbox').slideDown({queue: false, duration: 400, step: this.doLayout});\r
} else {\r
$('#toolbar').slideDown(0);\r
$('#controlbox').slideDown(0);\r