aboutsummaryrefslogtreecommitdiffstats
path: root/data/lib/skip-bug.js
blob: c909a3e9b2c1b108326ba4a5938cbe26c2f46cb2 (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 stemURL = 'https://HOSTNAME/show_bug.cgi?id=';
  var titleElems = document.getElementsByTagName('title');
  if (titleElems) {
    var REArr = new RegExp('[bB]ug\\s+([0-9]+)')
        .exec(titleElems[0].textContent);
    var hostname = document.location.hostname;
    if (REArr) {
      document.location = stemURL.replace('HOSTNAME', hostname)
          + REArr[1];
    }
  }
}

reloadPage();