diff options
-rw-r--r-- | lib/rhbzpage.js | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/lib/rhbzpage.js b/lib/rhbzpage.js index 93921ea..ef28175 100644 --- a/lib/rhbzpage.js +++ b/lib/rhbzpage.js @@ -568,7 +568,13 @@ RHBugzillaPage.prototype.queryInNewTab = function(text, component, product) { + "&field1-0-2=status_whiteboard&type1-0-2=substring&value1-0-2=" + text; urlStr += searchText; - tabs.open({url: urlStr}); + tabs.open({ + url: urlStr, + inBackground: true, + onOpen: function (t) { + t.activate(); + } + }); } }; |