diff options
Diffstat (limited to 'lib/bzpage.js')
-rw-r--r-- | lib/bzpage.js | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/bzpage.js b/lib/bzpage.js index 5e81a74..07e7ea9 100644 --- a/lib/bzpage.js +++ b/lib/bzpage.js @@ -94,6 +94,12 @@ var BZPage = function BZPage(win, config) { this.setUpLogging(); } + if ("killNodes" in config.gJSONData.configData && + this.hostname in config.gJSONData.configData.killNodes) { + var killConf = config.gJSONData.configData.killNodes[this.hostname]; + util.killNodes(this.doc, killConf[0], killConf[1]) + } + this.setConfigurationButton(); this.submitHandlerInstalled = false; this.bugNo = util.getBugNo(this.doc.location.toString()); |