diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/rhbzpage.js | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/rhbzpage.js b/lib/rhbzpage.js index 7dff883..8c1df55 100644 --- a/lib/rhbzpage.js +++ b/lib/rhbzpage.js @@ -413,9 +413,8 @@ RHBugzillaPage.prototype.setBranding = function() { } // we should make visible whether maintCCAddr is in CCList - if (util.isInList(this.doc.getElementById("assigned_to").value, this.CCList)) { + if (util.isInList(this.maintCCAddr, this.CCList)) { var ccEditBoxElem = this.doc.getElementById("cc_edit_area_showhide"); - // ccEditBoxElem.textContent = "*"+ccEditBoxElem.textContent; ccEditBoxElem.style.color = "navy"; ccEditBoxElem.style.fontWeight = "bolder"; ccEditBoxElem.style.textDecoration = "underline"; @@ -616,7 +615,7 @@ RHBugzillaPage.prototype.queryInNewTab = function(text, component, product) { url: urlStr, inBackground: true, onOpen: function (t) { - t.activate(); + tabs.activeTab = t; } }); } |