Remove all timeout-related code from resizing support.
authorMike Taylor <mike@indexdata.com>
Tue, 9 Jul 2013 16:58:11 +0000 (17:58 +0100)
committerMike Taylor <mike@indexdata.com>
Tue, 9 Jul 2013 16:58:11 +0000 (17:58 +0100)
Now we just reposition the div when we get a resize signal.

tools/htdocs/mkws.js

index 099e67f..56a9059 100644 (file)
@@ -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() });
     }