From 67b0dac979bbc531daaca84ffe7d6f59197cf944 Mon Sep 17 00:00:00 2001 From: Colin Devroe Date: Sat, 23 Feb 2019 15:25:10 -0500 Subject: [PATCH] Bumped version. Fix for iOS and for All Marks --- application/config/config.php | 2 +- assets/js/unmark.actions.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/application/config/config.php b/application/config/config.php index 72e21423..519db1bf 100644 --- a/application/config/config.php +++ b/application/config/config.php @@ -11,7 +11,7 @@ | version.point.release | */ -$config['unmark_version'] = '1.8.09'; +$config['unmark_version'] = '1.8.095'; /* |-------------------------------------------------------------------------- diff --git a/assets/js/unmark.actions.js b/assets/js/unmark.actions.js index a2ef2db7..3115f632 100644 --- a/assets/js/unmark.actions.js +++ b/assets/js/unmark.actions.js @@ -93,7 +93,7 @@ // For all panels run pjax manually. if ( panel_to_show !== "#panel-settings" ) { - $.pjax({ url: elem_ckd.attr('href'), container: '.main-content' }); + $.pjax({ url: elem_ckd.attr('href'), container: '.main-content', timeout:6000 }); } // Hides all panels except the one we're navigation to @@ -104,7 +104,7 @@ // clicked on any main navigation item other than hashtags // click on an actual hashtag // click on an actual label - if (Modernizr.mq('only screen and (max-width: 480px)') && panel_to_show !== '#panel-settings' && (is_tag_filter || is_label_filter)) { + if (Modernizr.mq('only screen and (max-width: 480px)') && panel_to_show !== '#panel-settings' && (is_label_menu || is_tag_filter || is_label_filter)) { unmark.mobile_nav(true); } return false;