Skip to content

Commit

Permalink
added access key for logo
Browse files Browse the repository at this point in the history
  • Loading branch information
nomadjimbob committed Feb 8, 2024
1 parent 7a37170 commit 6c5f32d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions mikio.php
Original file line number Diff line number Diff line change
Expand Up @@ -602,7 +602,7 @@ public function includeDWMenu(bool $print = true): string
($showText === true ? $lang['page_tools'] : '<span class="mikio-small-only">' . $lang['page_tools'] .
'</span>') . '</a>';

$html = '<div class="mikio-dropdown closed">' . implode('', $pageToolsMenu);
$html .= '<div class="mikio-dropdown closed">' . implode('', $pageToolsMenu);

$html .= '</div>';
$html .= '</li>';
Expand All @@ -614,7 +614,7 @@ public function includeDWMenu(bool $print = true): string
($showText === true ? $lang['site_tools'] : '<span class="mikio-small-only">' .
$lang['site_tools'] . '</span>') . '</a>';

$html = '<div class="mikio-dropdown closed">' . implode('', $siteToolsMenu);
$html .= '<div class="mikio-dropdown closed">' . implode('', $siteToolsMenu);

$html .= '</div>';
$html .= '</li>';
Expand All @@ -626,7 +626,7 @@ public function includeDWMenu(bool $print = true): string
($showText === true ? $lang['user_tools'] : '<span class="mikio-small-only">' .
$lang['user_tools'] . '</span>') . '</a>';

$html = '<div class="mikio-dropdown closed">' . implode('', $userToolsMenu);
$html .= '<div class="mikio-dropdown closed">' . implode('', $userToolsMenu);

$html .= '</div>';
$html .= '</li>';
Expand Down Expand Up @@ -780,7 +780,7 @@ public function includeNavbar(bool $print = true, bool $showSub = false)
$html .= '<nav class="mikio-navbar' . (($this->getConf('stickyNavbar') === true) ? ' mikio-sticky' : '') .
'">';
$html .= '<div class="mikio-container">';
$html .= '<a class="mikio-navbar-brand" href="' . $homeUrl . '">';
$html .= '<a class="mikio-navbar-brand" href="' . $homeUrl . '" accesskey="h" title="Home [h]">';
if ($this->getConf('navbarUseTitleIcon') === true || $this->getConf('navbarUseTitleText') === true) {
// Brand image
if ($this->getConf('navbarUseTitleIcon') === true) {
Expand Down

0 comments on commit 6c5f32d

Please sign in to comment.