summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastergui/templates/recipes.html
diff options
context:
space:
mode:
authorBelen Barros Pena <belen.barros.pena@intel.com>2014-02-21 11:57:57 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-03-17 13:59:38 +0000
commitc1f97ce3ab30e3d51ff76cae4a43494382efd87f (patch)
tree87e388b1b9173c0d27f3f8273b48215156816d57 /bitbake/lib/toaster/toastergui/templates/recipes.html
parenta3ccb730cb9a3509a2ddf62bb384a9181b281bdc (diff)
downloadpoky-c1f97ce3ab30e3d51ff76cae4a43494382efd87f.tar.gz
bitbake: toaster: Don't show clear search button if text input field is empty
The clear search button should only show when the search text input field is populated. If it is empty (as it happens when a filter returns no results) the clear search button should not display. (Bitbake rev: 6cc4aaf08b51bb6cd8d1813c33989a788bd06990) Signed-off-by: Belen Barros Pena <belen.barros.pena@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/toaster/toastergui/templates/recipes.html')
-rwxr-xr-xbitbake/lib/toaster/toastergui/templates/recipes.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/recipes.html b/bitbake/lib/toaster/toastergui/templates/recipes.html
index da5ac99bd5..860d30d318 100755
--- a/bitbake/lib/toaster/toastergui/templates/recipes.html
+++ b/bitbake/lib/toaster/toastergui/templates/recipes.html
@@ -24,7 +24,7 @@
24 <div class="row-fluid"> 24 <div class="row-fluid">
25 <div class="alert"> 25 <div class="alert">
26 <form class="no-results input-append" id="searchform"> 26 <form class="no-results input-append" id="searchform">
27 <input id="search" name="search" class="input-xxlarge" type="text" value="{{request.GET.search}}"/><a href="javascript:$('#search').val('');searchform.submit()" class="add-on btn" tabindex="-1"><i class="icon-remove"></i></a> 27 <input id="search" name="search" class="input-xxlarge" type="text" value="{{request.GET.search}}"/>{% if request.GET.search %}<a href="javascript:$('#search').val('');searchform.submit()" class="add-on btn" tabindex="-1"><i class="icon-remove"></i></a>{% endif %}
28 <button class="btn" type="submit" value="Search">Search</button> 28 <button class="btn" type="submit" value="Search">Search</button>
29 <button class="btn btn-link" onclick="javascript:$('#search').val('');searchform.submit()">Show all recipes</button> 29 <button class="btn btn-link" onclick="javascript:$('#search').val('');searchform.submit()">Show all recipes</button>
30 </form> 30 </form>