Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Move tab name to the beginning of the page title so it's easier to se…
…e your page history
  • Loading branch information
gashcrumb committed Sep 26, 2013
1 parent 5507d23 commit 4a6ad19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hawtio-web/src/main/webapp/app/core/js/helpers.ts
Expand Up @@ -810,7 +810,7 @@ module Core {
}

export function setPageTitleWithTab($document, title:Core.PageTitle, tab:string) {
$document.attr('title', title.getTitleWithSeparator(' : ') + ' : ' + tab);
$document.attr('title', tab + ' : ' + title.getTitleWithSeparator(' : '));
}

/**
Expand Down

0 comments on commit 4a6ad19

Please sign in to comment.