Created
June 22, 2016 11:58
-
-
Save kjtolsma/df256a7ccc0a5b382aede421bf6c2a29 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$( '.event-countdown' ).each( function() { | |
var $element = $( this ); | |
var date = $element.data( 'date' ); | |
$element.countdown( date, function( event ) { | |
$( this ).text( event.strftime( '%D days %H:%M:%S' ) ); | |
} ); | |
} ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment