Some tuning for countdown scripts
This commit is contained in:
@@ -472,6 +472,9 @@ jQuery(document).ready(function($){
|
|||||||
|
|
||||||
// Find the distance between now and the count down date
|
// Find the distance between now and the count down date
|
||||||
var distance = countDownDate - nowutc;
|
var distance = countDownDate - nowutc;
|
||||||
|
if ( distance < 0 ) {
|
||||||
|
distance = 0;
|
||||||
|
}
|
||||||
|
|
||||||
// Time calculations for days, hours, minutes and seconds
|
// Time calculations for days, hours, minutes and seconds
|
||||||
var days = Math.floor(distance / (1000 * 60 * 60 * 24));
|
var days = Math.floor(distance / (1000 * 60 * 60 * 24));
|
||||||
|
|||||||
@@ -31,6 +31,9 @@ function sp_viewport() {
|
|||||||
|
|
||||||
// Find the distance between now and the count down date
|
// Find the distance between now and the count down date
|
||||||
var distance = countDownDate - nowutc;
|
var distance = countDownDate - nowutc;
|
||||||
|
if ( distance < 0 ) {
|
||||||
|
distance = 0;
|
||||||
|
}
|
||||||
|
|
||||||
// Time calculations for days, hours, minutes and seconds
|
// Time calculations for days, hours, minutes and seconds
|
||||||
var days = Math.floor(distance / (1000 * 60 * 60 * 24));
|
var days = Math.floor(distance / (1000 * 60 * 60 * 24));
|
||||||
|
|||||||
@@ -75,7 +75,7 @@ class SP_Admin_Dashboard {
|
|||||||
$date = new DateTime( $next_event->post_date );
|
$date = new DateTime( $next_event->post_date );
|
||||||
$interval = date_diff( $now, $date );
|
$interval = date_diff( $now, $date );
|
||||||
?>
|
?>
|
||||||
<li class="countdown" data-countdown="<?php echo str_replace( '-', '/', get_gmt_from_date( $post->post_date ) ); ?>">
|
<li class="countdown" data-countdown="<?php echo str_replace( '-', '/', get_gmt_from_date( $next_event->post_date ) ); ?>">
|
||||||
<a href="<?php echo get_edit_post_link( $next_event->ID ); ?>">
|
<a href="<?php echo get_edit_post_link( $next_event->ID ); ?>">
|
||||||
<?php printf( __( '<strong>%s</strong> until next event', 'sportspress' ), $interval->days . ' ' . __( 'days', 'sportspress' ) . ' ' . sprintf( '%02s:%02s:%02s', $interval->h, $interval->i, $interval->s ) ); ?>
|
<?php printf( __( '<strong>%s</strong> until next event', 'sportspress' ), $interval->days . ' ' . __( 'days', 'sportspress' ) . ' ' . sprintf( '%02s:%02s:%02s', $interval->h, $interval->i, $interval->s ) ); ?>
|
||||||
(<?php echo $next_event->post_title; ?>)
|
(<?php echo $next_event->post_title; ?>)
|
||||||
|
|||||||
Reference in New Issue
Block a user