Skip to content

Commit

Permalink
Libdoc search: Hide unmatched by default (#1872)
Browse files Browse the repository at this point in the history
  • Loading branch information
pekkaklarck committed Dec 19, 2014
1 parent 0ced994 commit 7073383
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/robot/htmldata/libdoc/libdoc.html
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ <h2 id="Introduction">Introduction</h2>
<input type="checkbox" id="include-doc" onclick="doSearch()" checked>
<label for="include-doc">Documentation</label>
</fieldset>
<input type="checkbox" id="hide-unmatched" onclick="hideUnmatched()">
<input type="checkbox" id="hide-unmatched" onclick="hideUnmatched()" checked>
<label for="hide-unmatched">Hide unmatched keywords</label>
<div id="search-buttons">
<input type="button" value="Reset" onclick="resetSearch()"
Expand Down Expand Up @@ -267,7 +267,7 @@ <h2 id="Keywords">Keywords</h2>
<th class="doc">Documentation</th>
</tr>
{{each keywords}}
<tr id="${$value.name}" class="kw-row">
<tr id="${$value.name}" class="kw-row hide-unmatched">
<td class="kw">${$value.name}</td>
<td class="args">${$value.args}</td>
<td class="doc">{{html $value.doc}}</td>
Expand Down

0 comments on commit 7073383

Please sign in to comment.