From 955f77978ea6f3f5730571698de07cc77d1fc5a4 Mon Sep 17 00:00:00 2001 From: Matěj Cepl Date: Thu, 24 Jun 2010 20:03:57 +0200 Subject: Even query of our Bugzilla should be done on background. --- lib/rhbzpage.js | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) 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(); + } + }); } }; -- cgit