1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-11 11:13:59 +02:00

[ticket/11552] Tweaks to responsive navigation

PHPBB3-11552
This commit is contained in:
Vjacheslav Trushkin
2013-10-19 22:30:03 +03:00
parent 7b972204ae
commit 2c15b653cc
3 changed files with 7 additions and 3 deletions

View File

@@ -468,7 +468,7 @@ function insert_single_user(formId, user)
});
// Responsive breadcrumbs
$('.breadcrumbs:not(.skip-responsive)').each(function() {
$('.breadcrumbs:not(.skip-responsive, .linklist .breadcrumbs)').each(function() {
var $this = $(this),
$body = $('body'),
links = $this.find('.crumb'),
@@ -606,7 +606,7 @@ function insert_single_user(formId, user)
links = $this.children().not('.skip-responsive'),
html = '<li class="responsive-menu" style="display:none;"><a href="javascript:void(0);" class="responsive-menu-link">&nbsp;</a><ul class="responsive-popup" style="display:none;" /></li>',
// List of items that should be hidden last
filterString = '.pagination, .icon-notifications, .icon-pm, .icon-logout, .icon-login, .mark-read',
filterString = '.pagination, .icon-notifications, .icon-pm, .icon-logout, .icon-login, .mark-read, .breadcrumbs',
filtered = links.filter(filterString);
if (links.is('.rightside'))