From 40ad17b3ee7bd3df56853b9b58196d017fd1d631 Mon Sep 17 00:00:00 2001 From: Mike Taylor Date: Thu, 1 May 2014 12:24:46 +0100 Subject: [PATCH] Tweak resizePage so that is does the appropriate actions on its very first call. As a result, we now initially display the narrow version when viewing in narrow window. --- src/mkws-core.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/mkws-core.js b/src/mkws-core.js index 1ff2f2e..32e09f8 100644 --- a/src/mkws-core.js +++ b/src/mkws-core.js @@ -336,11 +336,11 @@ mkws.pagerNext = function(tname) { var width = $(window).width(); var from, to, method; - if (mkws.width === undefined) { - // No state change, since we have no previous state - } else if (mkws.width > threshhold && width <= threshhold) { + if ((mkws.width === undefined || mkws.width > threshhold) && + width <= threshhold) { from = "wide"; to = "narrow"; method = "hide"; - } else if (mkws.width <= threshhold && width > threshhold) { + } else if ((mkws.width === undefined || mkws.width <= threshhold) && + width > threshhold) { from = "narrow"; to = "wide"; method = "show"; } mkws.width = width; -- 1.7.10.4