blob: 749473568970d4d821f11509094e6ccf2a41472f [file] [log] [blame]
<!DOCTYPE html>
<script>
const commentRegexp = /#c([0-9]+)/;
const url = {{ base_url|tojson }}
let hash = window.location.hash;
// If a monorail style comment is specified then convert it to an
// issue tracker style comment. Increment it by one because issue
// tracker considers the description as the first comment.
const matches = hash.match(commentRegexp);
if (matches) {
let commentNum = parseInt(matches[1]);
hash = hash.replace("#c" + commentNum, "#comment" + (commentNum+1));
}
window.location = url + hash;
</script>