This commit is contained in:
Jay McCarthy 2014-09-23 21:37:20 -04:00
parent 6482301fd5
commit 24d854e4d1
3 changed files with 8 additions and 2 deletions

View File

@ -93,16 +93,17 @@
<div id="pi_install" class="install">Install this package with:<br><br><tt>raco pkg install <span id="pi_name_inst"></span></tt><br><br>or, with the 'File|Install Package...' menu option in DrRacket.</div>
</div>
<p id="packages_loading" style="text-align: center;">Loading...</td></tr>
<table class="packages sortable">
<thead>
<tr>
<th></th>
<th>Updated Recently</th>
<th>Package</th>
<th>Description</th>
<th>Build</th>
</tr>
</thead>
<tbody id="packages_table">
<tbody id="packages_table">
</tbody>
</table>
<div id="footer">

View File

@ -497,6 +497,8 @@ $( document ).ready(function() {
var name = snames[name_i];
add_package_to_list ( pkgdb[name] ); });
$("#packages_loading").hide();
evaluate_search();
if ( target_pkg && pkgdb[target_pkg] ) {

View File

@ -171,6 +171,9 @@ tr#pi_delete_row td {
text-align: center;
}
.packages thead th:nth-child(1) {
font-size: xx-small;
}
.packages tr td:nth-child(1) {
min-width: 1em;
}