blob: bc6812cac212c013490d05114f659010bce73890 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// Released under the MIT/X11 license
// http://www.opensource.org/licenses/mit-license.php
// "use strict";
function reloadPage() {
var titleElems = document.getElementsByTagName('title');
if (titleElems) {
var REArr = new RegExp('[bB]ug\\s+([0-9]+)')
.exec(titleElems[0].textContent);
if (REArr) {
var URLArr = document.location.pathname.split("/");
document.location = URLArr.slice(0, URLArr.length - 1).join("/")
+ "/show_bug.cgi?id=" + REArr[1];
}
}
}
reloadPage();
|