From 3853bf6dd82ce1033fe3ac2f017696d65e663edc Mon Sep 17 00:00:00 2001 From: Waseem Daher Date: Thu, 11 Oct 2012 18:48:37 -0400 Subject: [PATCH] In case we start out very small, trigger resize handler on page ready. (imported from commit b3492eee7299e89ded422527facf9c8e44421c73) --- zephyr/static/js/ui.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/zephyr/static/js/ui.js b/zephyr/static/js/ui.js index db2e0ec141..d7bd78dac0 100644 --- a/zephyr/static/js/ui.js +++ b/zephyr/static/js/ui.js @@ -253,4 +253,9 @@ $(function () { .text(response).stop(true).fadeTo(0,1); } }); + + // A little hackish, because it doesn't seem to totally get us + // the exact right width for the narrowbar and compose box, + // but, close enough for now. + resizehandler(); });