Navigation Menu

Skip to content

Commit

Permalink
fixes #470 so we use the current web app context path not the /hawtio…
Browse files Browse the repository at this point in the history
…/ hard coded value
  • Loading branch information
jstrachan committed Aug 14, 2013
1 parent d145f67 commit 13ea3fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hawtio-web/src/main/webapp/app/core/js/helpers.ts
Expand Up @@ -905,7 +905,7 @@ module Core {
}
console.log("going to server: " + connectUrl + " as user " + options.userName);

var full = "?connectUrl=" + encodeURIComponent(connectUrl);
var full = "?url=" + encodeURIComponent(connectUrl);

full += "#/logs";
window.open(full);
Expand All @@ -930,7 +930,7 @@ module Core {
}
console.log("going to server: " + connectUrl + " as user " + options.userName);

var full = "?connectUrl=" + encodeURIComponent(connectUrl);
var full = "?url=" + encodeURIComponent(connectUrl);

// default the osgi view
full += "#/osgi/bundle-list";
Expand Down

0 comments on commit 13ea3fe

Please sign in to comment.