Datatable, sort by date time format desc

http://stackoverflow.com/questions/30536334/datatable-how-to-display-table-sorted-by-a-column-in-this-date-format

HTML

<link rel="stylesheet" href="//cdn.datatables.net/1.10.0/css/jquery.dataTables.css">
<script src="//cdn.datatables.net/1.10.0/js/jquery.dataTables.js"></script>
<table id="example">
    <thead>
        <tr>
            <th>date</th>
        </tr>
    </thead>
    <tbody>
        <tr><td>2015-03-09T14:46:54.678-04:00</td></tr>
        <tr><td>2015-03-09T14:46:55.678-04:00</td></tr>
        <tr><td>2015-03-09T14:46:56.678-04:00</td></tr>
        <tr><td>2015-02-09T14:46:57.678-04:00</td></tr>
        <tr><td>2015-02-09T14:46:56.678-04:00</td></tr>
        <tr><td>2015-03-10T02:46:57.678-04:00</td></tr>
        <tr><td>2015-03-11T14:41:57.678-04:00</td></tr>
        <tr><td>2015-03-09T12:46:57.678-04:00</td></tr>
        <tr><td>2015-03-09T01:46:57.678-04:00</td></tr>        
    </tbody>
</table>

JavaScript

var table = $('#example').DataTable({
    columnDefs : [
        { type: 'time-date-sort', 
          targets: [0],
        }
    ],
    order: [[ 0, "desc" ]]
});