Files
sportspress/assets/js/admin/dashboard.js
2014-03-28 01:48:52 +11:00

11 lines
356 B
JavaScript

jQuery(document).ready(function($){
// Dashboard countdown
$("#sportspress_dashboard_status .sp_status_list li.countdown").each(function() {
var $this = $(this), finalDate = $(this).data('countdown');
$this.countdown(finalDate, function(event) {
$this.find('strong').html(event.strftime("%D "+localized_strings.days+" %H:%M:%S"));
});
});
});