From: Mike Taylor Date: Wed, 30 Apr 2014 15:53:31 +0000 (+0100) Subject: Rename targetWidth -> threshhold. X-Git-Tag: 1.0.0~773 X-Git-Url: http://git.indexdata.com/?p=mkws-moved-to-github.git;a=commitdiff_plain;h=9f2178ead299b1804c59b32773e3a7902da673fa Rename targetWidth -> threshhold. --- diff --git a/src/mkws-core.js b/src/mkws-core.js index 0e65f27..ab536f5 100644 --- a/src/mkws-core.js +++ b/src/mkws-core.js @@ -332,18 +332,18 @@ mkws.pagerNext = function(tname) { function resizePage() { var list = ["mkwsSwitch", "mkwsLang"]; - var targetWidth = mkws.config.responsive_design_width; + var threshhold = mkws.config.responsive_design_width; var width = $(window).width(); if (mkws.width === undefined) { // No state change, since we have no previous state - } else if (mkws.width > targetWidth && width <= targetWidth) { + } else if (mkws.width > threshhold && width <= threshhold) { log("wide -> narrow"); - } else if (mkws.width <= targetWidth && width > targetWidth) { + } else if (mkws.width <= threshhold && width > threshhold) { log("narrow -> wide"); } - if (mkws.width > targetWidth && width <= targetWidth) { + if (mkws.width > threshhold && width <= threshhold) { log("changing from wide to narrow: " + width); $(".mkwsTermlist-Container-wide").hide(); $(".mkwsTermlist-Container-narrow").show(); @@ -354,7 +354,7 @@ mkws.pagerNext = function(tname) { $("." + list[i] + ".mkwsTeam_" + tname).hide(); } } - } else if (mkws.width <= targetWidth && width > targetWidth) { + } else if (mkws.width <= threshhold && width > threshhold) { log("changing from narrow to wide: " + width); $(".mkwsTermlist-Container-wide").show(); $(".mkwsTermlist-Container-narrow").hide();