diff options
Diffstat (limited to 'data/lib/queries.js')
-rw-r--r-- | data/lib/queries.js | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/data/lib/queries.js b/data/lib/queries.js index 52c6ce6..066991e 100644 --- a/data/lib/queries.js +++ b/data/lib/queries.js @@ -13,7 +13,7 @@ function getSelection() { /** * Opens a new tab with a query for the given text in the selected component - * + * * @param text * to be searched for * @param component @@ -22,7 +22,7 @@ function getSelection() { * (optional) string with the product name, if undefined, search in all * products * @return None - * + * */ function queryInNewTab(text, component, product, equivComps) { var urlStr = "https://" + window.location.hostname @@ -55,7 +55,7 @@ function queryInNewTab(text, component, product, equivComps) { + text; urlStr += searchText; self.postMessage(new Message("OpenURLinTab", urlStr)); // utils.js is - // always avaiulable + // always avaiulable } } @@ -80,7 +80,7 @@ function queryForSelection() { } /** - * + * */ function queryUpstreamCallback(text, queryUpBug) { var searchData = filterByRegexp(queryUpBug, getComponent()); @@ -99,7 +99,7 @@ function queryUpstreamCallback(text, queryUpBug) { /** * Search simple query in the upstream bugzilla appropriate for the component - * + * * @return none */ function queryUpstream(qUpBug) { |