Skip to content

Commit

Permalink
Change permalink function name to new view name
Browse files Browse the repository at this point in the history
  • Loading branch information
tobami committed Jun 6, 2010
1 parent 0e303b9 commit 78beadf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions speedcenter/templates/codespeed/timeline.html
Expand Up @@ -26,7 +26,7 @@
return config;
}

function permalinkToOverview(commitid, executableid, environment) {
function permalinkToChanges(commitid, executableid, environment) {
window.location="../changes/?rev=" + commitid + "&" + "exe=" + executableid + "&env=" + environment;
}

Expand All @@ -36,7 +36,7 @@
var commitid = neighbor.data[3];
var executableid = seriesindex[neighbor.seriesIndex];
var environment = $("input[name='environments']:checked").val();
permalinkToOverview(commitid, executableid, environment);
permalinkToChanges(commitid, executableid, environment);
}
}

Expand Down

0 comments on commit 78beadf

Please sign in to comment.