File "dashboard.js"
Full Path: /home/londdqdw/public_html/06/wp-content/plugins/sportspress/assets/js/admin/dashboard.js
File size: 418 bytes
MIME-type: text/plain
Charset: utf-8
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" ) );
}
);
}
);
}
);