Skip to content

Commit

Permalink
! Mobile browsers are unable to follow links in the main menu's top-l…
Browse files Browse the repository at this point in the history
…evel items, which is mostly a problem with the first menu column, so I'm adding an 'exception' to account for that. (Subs.php)
  • Loading branch information
Nao committed Feb 26, 2017
1 parent 9affd1f commit c2bee20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/app/Subs.php
Expand Up @@ -2130,7 +2130,7 @@ function setupMenuContext()
'root' => array(
'title' => $context['forum_name'],
'href' => '<URL>',
'show' => $is_b,
'show' => $is_b || we::is('mobile'),
),
'board' => array(
'title' => $is_b ? $board_info['name'] : '',
Expand Down

0 comments on commit c2bee20

Please sign in to comment.