aboutsummaryrefslogtreecommitdiffstats
path: root/lib/rhbzpage.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rhbzpage.js')
-rw-r--r--lib/rhbzpage.js8
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();
+ }
+ });
}
};