Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- jQuery(function ($) {
- 'use strict';
- (function () {
- // Countdown
- $(function() {
- var endDate = ["01/26/2016"];
- $('.tk-countdown .row').countdown({
- date: endDate,
- render: function(data) {
- $(this.el).html('<div><div class="days"><span>' + this.leadingZeros(data.days, 2) + '</span><span>days</span></div><div class="hours"><span>' + this.leadingZeros(data.hours, 2) + '</span><span>hours</span></div></div><div class="tk-countdown-ms"><div class="minutes"><span>' + this.leadingZeros(data.min, 2) + '</span><span>minutes</span></div><div class="seconds"><span>' + this.leadingZeros(data.sec, 2) + '</span><span>seconds</span></div></div>');
- }
- });
- });
- }());
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement