18 lines
654 B
JavaScript
Executable File
18 lines
654 B
JavaScript
Executable File
/*
|
|
Template Name: Minton - Responsive Bootstrap 4 Admin Dashboard
|
|
Author: CoderThemes
|
|
Website: https://coderthemes.com/
|
|
Contact: support@coderthemes.com
|
|
File: Coming Soon init js
|
|
*/
|
|
|
|
$('[data-countdown]').each(function () {
|
|
var $this = $(this), finalDate = $(this).data('countdown');
|
|
$this.countdown(finalDate, function (event) {
|
|
$(this).html(event.strftime(''
|
|
+ '<div class="coming-box">%D <span>Days</span></div> '
|
|
+ '<div class="coming-box">%H <span>Hours</span></div> '
|
|
+ '<div class="coming-box">%M <span>Minutes</span></div> '
|
|
+ '<div class="coming-box">%S <span>Seconds</span></div> '));
|
|
});
|
|
}); |