From d428a8122cbc803ef99acd6db03323ceb5b76f53 Mon Sep 17 00:00:00 2001 From: Matěj Cepl Date: Sat, 24 Jul 2010 23:18:11 +0200 Subject: Now when we know how to load in background, do it always. --- lib/rhbzpage.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'lib/rhbzpage.js') diff --git a/lib/rhbzpage.js b/lib/rhbzpage.js index 61c9fc7..4458e28 100644 --- a/lib/rhbzpage.js +++ b/lib/rhbzpage.js @@ -649,7 +649,11 @@ RHBugzillaPage.prototype.queryUpstream = function() { var queryUpstreamBugsURLArray = this.constantData.queryUpstreamBug; var urlBase = util.filterByRegexp(queryUpstreamBugsURLArray, this.component); tabs.open({ - url: urlBase + text + url: urlBase + text, + inBackground: true, + onOpen: function (tab) { + tabs.activeTab = tab; + } }); } }; -- cgit