Skip to content

Commit

Permalink
Bumped version. Fix for iOS and for All Marks
Browse files Browse the repository at this point in the history
  • Loading branch information
cdevroe committed Feb 23, 2019
1 parent 0669481 commit 67b0dac
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion application/config/config.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
| version.point.release
|
*/
$config['unmark_version'] = '1.8.09';
$config['unmark_version'] = '1.8.095';

/*
|--------------------------------------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions assets/js/unmark.actions.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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;
Expand Down

0 comments on commit 67b0dac

Please sign in to comment.