Skip to content

Commit

Permalink
JENKINS-21429 Fixed links in user dashboards
Browse files Browse the repository at this point in the history
  • Loading branch information
ghenzler committed Jan 19, 2014
1 parent 13e8683 commit 45dce1f
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -18,8 +18,8 @@ var rootUrl = '${rootURL}';
Q(latestChangesDiv).load(rootUrl+"/job/"+jenkinsJobNameForUrl+"/changes #main-panel ol", function() {
Q(latestChangesDiv+" a[href]").each(function() {
if(this.href.indexOf('/user/') > -1) {
// leave user urls unchanged
if(this.href.indexOf('/user/') > -1 && !(this.href.indexOf('/user/jenkins/my-views/') > -1)) {
// leave normal user urls unchanged
} else {
// correcting change set links
//console.log("this.href before replace = ", this.href);
Expand Down

0 comments on commit 45dce1f

Please sign in to comment.