Merge pull request #10091 from dannon/masthead-menu-ordering

Masthead ordering tweak
This commit is contained in:
Enis Afgan
2020-08-11 16:20:24 -04:00
committed by GitHub
+61 -60
View File
@@ -135,6 +135,67 @@ export function fetchMenu(options = {}) {
});
}
//
// Help tab.
//
const helpTab = {
id: "help",
title: _l("Help"),
url: "javascript:void(0)",
tooltip: _l("Support, contact, and community"),
menu: [
{
title: _l("Support"),
url: options.support_url,
target: "_blank",
},
{
title: _l("Search"),
url: options.search_url,
target: "_blank",
},
{
title: _l("Mailing Lists"),
url: options.mailing_lists,
target: "_blank",
},
{
title: _l("Videos"),
url: options.screencasts_url,
target: "_blank",
},
{
title: _l("Wiki"),
url: options.wiki_url,
target: "_blank",
},
{
title: _l("How to Cite Galaxy"),
url: options.citation_url,
target: "_blank",
},
{
title: _l("Interactive Tours"),
url: "tours",
},
],
};
if (options.terms_url) {
helpTab.menu.push({
title: _l("Terms and Conditions"),
url: options.terms_url,
target: "_blank",
});
}
if (options.helpsite_url) {
helpTab.menu.unshift({
title: _l("Galaxy Help"),
url: options.helpsite_url,
target: "_blank",
});
}
menu.push(helpTab);
//
// User tab.
//
@@ -230,65 +291,5 @@ export function fetchMenu(options = {}) {
}
menu.push(userTab);
//
// Help tab.
//
const helpTab = {
id: "help",
title: _l("Help"),
url: "javascript:void(0)",
tooltip: _l("Support, contact, and community"),
menu: [
{
title: _l("Support"),
url: options.support_url,
target: "_blank",
},
{
title: _l("Search"),
url: options.search_url,
target: "_blank",
},
{
title: _l("Mailing Lists"),
url: options.mailing_lists,
target: "_blank",
},
{
title: _l("Videos"),
url: options.screencasts_url,
target: "_blank",
},
{
title: _l("Wiki"),
url: options.wiki_url,
target: "_blank",
},
{
title: _l("How to Cite Galaxy"),
url: options.citation_url,
target: "_blank",
},
{
title: _l("Interactive Tours"),
url: "tours",
},
],
};
if (options.terms_url) {
helpTab.menu.push({
title: _l("Terms and Conditions"),
url: options.terms_url,
target: "_blank",
});
}
if (options.helpsite_url) {
helpTab.menu.unshift({
title: _l("Galaxy Help"),
url: options.helpsite_url,
target: "_blank",
});
}
menu.push(helpTab);
return menu;
}