Skip to content

Commit

Permalink
Merge pull request elastic#8033 from spalger/fix/collapseExpandButton
Browse files Browse the repository at this point in the history
Fix collapse/expand button
  • Loading branch information
epixa authored Aug 20, 2016
2 parents 4051bfa + 321aee0 commit 9c432ef
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/ui/public/chrome/api/nav.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export default function (chrome, internals) {
let isUrl = url && isString(url);
if (!isUrl) return url;

let parsed = parse(url, true);
let parsed = parse(url, true, true);
if (!parsed.host && parsed.pathname) {
if (parsed.pathname[0] === '/') {
parsed.pathname = chrome.getBasePath() + parsed.pathname;
Expand Down
2 changes: 1 addition & 1 deletion src/ui/public/chrome/directives/global_nav/global_nav.html
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
class="{{ globalNavToggleButton.classes }}"
tooltip-content="globalNavToggleButton.tooltipContent"
on-click="toggleGlobalNav($event)"
icon="'/plugins/kibana/assets/play-circle.svg'"
icon="'plugins/kibana/assets/play-circle.svg'"
title="globalNavToggleButton.title"
></global-nav-link>
</div>
Expand Down

0 comments on commit 9c432ef

Please sign in to comment.