blob: 4b4cd341980c13469932f3dd1e10084ceca8e5cc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// 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.path.split("/");
document.location = URLArr.slice(0, URLArr.length - 1).join("/")
+ "/show_bug.cgi?id=" + REArr[1];
}
}
}
console.log("asdasd");
reloadPage();
|