From 6380adeed3ccd31e0429cecdd71a9d7a8aaeeb5b Mon Sep 17 00:00:00 2001 From: Jay McCarthy Date: Mon, 14 Oct 2013 14:38:04 -0600 Subject: [PATCH] sorting by last update --- pkgs/plt-services/meta/pkg-index/official/static/index.html | 1 + pkgs/plt-services/meta/pkg-index/official/static/index.js | 5 +++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/plt-services/meta/pkg-index/official/static/index.html b/pkgs/plt-services/meta/pkg-index/official/static/index.html index a9119d5c73..a88dfea3c6 100644 --- a/pkgs/plt-services/meta/pkg-index/official/static/index.html +++ b/pkgs/plt-services/meta/pkg-index/official/static/index.html @@ -54,6 +54,7 @@ + diff --git a/pkgs/plt-services/meta/pkg-index/official/static/index.js b/pkgs/plt-services/meta/pkg-index/official/static/index.js index c237dbccef..3cbaed5820 100644 --- a/pkgs/plt-services/meta/pkg-index/official/static/index.js +++ b/pkgs/plt-services/meta/pkg-index/official/static/index.js @@ -367,9 +367,10 @@ $( document ).ready(function() { { class: ((now - (60*60*24*2)) < value['last-updated'] ? "recent" : "old") }) .data( "obj", value) .append( + $('
Package Authors Description').html("") + .append( curate_span ), $('').html("") - .append( curate_span, - jslink( value['name'], function () { open_info ( value ); }) ), + .append( jslink( value['name'], function () { open_info ( value ); }) ), $('').append( $.map( value['authors'], function ( author, i ) { return addfilterlink ( author, "author:" + author, "possible" ); } ) ), $('').text( value['description'] ),