Skip to content
This repository has been archived by the owner on Mar 25, 2019. It is now read-only.

Commit

Permalink
issue #658: Ссылки соц кнопки открывать в новой вкладке
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrey Ivnitsky authored and mbaev committed Nov 1, 2017
1 parent 8457cab commit a9593a8
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions profiles/drupalru/themes/druru/theme/menu/menu-link.func.php
Expand Up @@ -38,6 +38,10 @@ function druru_menu_link(array $variables) {
$element['#localized_options']['attributes']['data-toggle'] = 'dropdown';
}
}
// Add target=_blank for social links
if ($element['#original_link']['menu_name'] == 'menu-social-links') {
$element['#localized_options']['attributes']['target'][] = '_blank';
}
// On primary navigation menu, class 'active' is not set on active menu item.
// @see https://drupal.org/node/1896674
$is_front_page = ($element['#href'] == '<front>' && drupal_is_front_page());
Expand Down

0 comments on commit a9593a8

Please sign in to comment.