templates/rrs/{recipes, maintainers}.html: Improvment in alert div no records

Add default display:none to alert div of no records this avoid view this
div at initial load because JS takes time to process the table and hide
it if records are found.

Signed-off-by: Aníbal Limón <anibal.limon@linux.intel.com>
This commit is contained in:
Aníbal Limón 2015-02-17 10:43:53 +00:00 committed by Paul Eggleton
parent e49e7862ab
commit 8def265a02
2 changed files with 2 additions and 2 deletions

View File

@ -31,7 +31,7 @@
</div>
</div>
<div id="no_maintainers_alert" class="alert">
<div id="no_maintainers_alert" class="alert" style="display:none">
No maintainers found <a href="#" id="view-all-maintainers" style="margin-left:10px;">View all maintainers</a>
</div>
<table class="table table-bordered table-hover" id="statistics-table">

View File

@ -63,7 +63,7 @@
</div>
</div>
<div id="no_recipes_alert" class="alert">
<div id="no_recipes_alert" class="alert" style="display:none">
No recipes found <a href="#" id="view-all-recipes" style="margin-left:10px;">View all recipes</a>
</div>
<table class="table table-bordered tablesorter table-hover" id="recipestable">