Lines Matching refs:keyword
20 // Watch for keypresses in the keyword filter textbox, and update
21 // search results to reflect the keyword filter.
22 $('#resource-browser-keyword-filter').keyup(function() {
23 // Filter results on screen by keyword.
40 * Returns whether or not the given search result contains the given keyword.
42 function resultMatchesKeyword(result, keyword) {
43 keyword = keyword.toLowerCase();
45 result.title.en.toLowerCase().indexOf(keyword) >= 0)
48 result.description.en.toLowerCase().indexOf(keyword) >= 0)
51 result.topicsHtml.replace(/\<.*?\>/g,'').toLowerCase().indexOf(keyword) >= 0)