diff options
author | Matěj Cepl <mcepl@redhat.com> | 2010-05-30 09:56:55 +0200 |
---|---|---|
committer | Matěj Cepl <mcepl@redhat.com> | 2010-05-30 09:56:55 +0200 |
commit | fa726bcbae605dd21861bee728f66a2134a1d385 (patch) | |
tree | 47f053a49a12efe59867c15d57f742af5c104725 | |
parent | 34ccf4f81d4dc539d7c4edeaf15a033598cf55de (diff) | |
download | bugzilla-triage-fa726bcbae605dd21861bee728f66a2134a1d385.tar.gz |
Updating sending bug upstream.
-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(); }); }; |