diff options
Diffstat (limited to 'bugzillaBugTriage.js')
-rw-r--r-- | bugzillaBugTriage.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bugzillaBugTriage.js b/bugzillaBugTriage.js index b043cd5..4917a5a 100644 --- a/bugzillaBugTriage.js +++ b/bugzillaBugTriage.js @@ -2232,7 +2232,7 @@ RHBugzillaPage.prototype.queryUpstream = function() { * */ RHBugzillaPage.prototype.sendBugUpstream = function() { - let url = this.filterByRegexp(newUpstreamBugsURLArray, this + let url = this.filterByRegexp(this.constantData.newUpstreamBug, this .getOptionValue("component")); let ret = jetpack.tabs.open(url); @@ -2244,7 +2244,7 @@ RHBugzillaPage.prototype.sendBugUpstream = function() { .getElementById("short_desc_nonedit_display").textContent .trim(); otherElems.namedItem("comment").value = that.collectComments(); - ret.focused(); + ret.focus(); }); }; |