Skip to content

Commit

Permalink
Merge pull request #7074 from dannon/fix_for_facebook_auth
Browse files Browse the repository at this point in the history
[18.09] Fix welcome on redirect from facebook auth
  • Loading branch information
martenson committed Dec 12, 2018
2 parents 6db7219 + f8ed3e7 commit 4df43ad
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion client/galaxy/scripts/apps/analysis.js
Expand Up @@ -51,7 +51,7 @@ window.app = function app(options, bootstrapped) {
/** Routes */
var AnalysisRouter = Router.extend({
routes: {
"(/)": "home",
"(/)(#)(_=_)": "home",
"(/)root*": "home",
"(/)tours(/)(:tour_id)": "show_tours",
"(/)user(/)": "show_user",
Expand Down
6 changes: 3 additions & 3 deletions client/galaxy/scripts/layout/menu.js
Expand Up @@ -221,9 +221,9 @@ var Collection = Backbone.Collection.extend({
}
if (options.helpsite_url) {
helpTab.menu.unshift({
title: _l("Galaxy Help"),
url: options.helpsite_url,
target: "_blank"
title: _l("Galaxy Help"),
url: options.helpsite_url,
target: "_blank"
});
}
this.add(helpTab);
Expand Down

0 comments on commit 4df43ad

Please sign in to comment.