summaryrefslogtreecommitdiffstats
path: root/extensions/MyDashboard/web
diff options
context:
space:
mode:
authorDave Lawrence <dlawrence@mozilla.com>2013-03-21 22:25:53 +0100
committerDave Lawrence <dlawrence@mozilla.com>2013-03-21 22:25:53 +0100
commit2b88ae92c4970f0ff5cccb5b607902f8752590c2 (patch)
tree5f2586b20f4ca9311877e93c227b23cb6b525a34 /extensions/MyDashboard/web
parent897f58ced15e63ca63e870a40991eaf97de84f2f (diff)
downloadbugzilla-2b88ae92c4970f0ff5cccb5b607902f8752590c2.tar.gz
bugzilla-2b88ae92c4970f0ff5cccb5b607902f8752590c2.tar.xz
Bug 849905 - bug filing links in my dashboard should be able to be opened in new tabs/windows
r=glob
Diffstat (limited to 'extensions/MyDashboard/web')
-rw-r--r--extensions/MyDashboard/web/js/query.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/extensions/MyDashboard/web/js/query.js b/extensions/MyDashboard/web/js/query.js
index 62d373e65..4590bb603 100644
--- a/extensions/MyDashboard/web/js/query.js
+++ b/extensions/MyDashboard/web/js/query.js
@@ -54,7 +54,7 @@ YUI({
Y.one("#query_container .query_heading").setHTML(e.response.meta.heading);
Y.one("#query_bugs_found").setHTML(
'<a href="buglist.cgi?' + e.response.meta.buffer +
- '">' + e.response.results.length + ' bugs found</a>');
+ '" target="_blank">' + e.response.results.length + ' bugs found</a>');
dataTable.set('data', e.response.results);
}
},