From f38e3b7c6f9c11c6626c8e07aec6e721a576885e Mon Sep 17 00:00:00 2001 From: Mike Taylor Date: Tue, 9 Jul 2013 17:58:11 +0100 Subject: [PATCH] Remove all timeout-related code from resizing support. Now we just reposition the div when we get a resize signal. --- tools/htdocs/mkws.js | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/tools/htdocs/mkws.js b/tools/htdocs/mkws.js index 099e67f..56a9059 100644 --- a/tools/htdocs/mkws.js +++ b/tools/htdocs/mkws.js @@ -617,13 +617,7 @@ function mkws_html_all(config) { if (mkws_config.responsive_design) { // Responsive web design - change layout on the fly based on // current screen width. Required for mobile devices. - var timeout = null; - $(window).resize( function(e) { - if (timeout) - clearTimeout(timeout); - timeout = setTimeout(function () { mkws_mobile_resize() }, 50); - }); - + $(window).resize( function(e) { mkws_mobile_resize() }); // initial check after page load $(document).ready(function() { mkws_mobile_resize() }); } -- 1.7.10.4