﻿// Depends on jquery.timeago.js
$( function () {

    // Use timeago for upload dates
    jQuery( "abbr.timeago" ).timeago();

    // Replace descriptions with text
    $( "#index .case .description *" ).replaceWith( function () {
        return $( this ).text();

    } );
} )
