(function($) {
"use strict";
var cm_counter_script_js = function($scope, $) {
if ($('.time-countdown-two').length) {
$('.time-countdown-two').each(function () {
var Self = $(this);
var countDate = Self.data('countdown-time'); // getting date
Self.countdown(countDate, function (event) {
$(this).html('
' + event.strftime('%D') + ' days
' + event.strftime('%H') + ' Hours
' + event.strftime('%M') + ' Minutes
' + event.strftime('%S') + ' Seconds
');
});
});
}
};
$(window).on('elementor/frontend/init', function () {
elementorFrontend.hooks.addAction('frontend/element_ready/thinkai_coming_soon.default', cm_counter_script_js);
});
})(window.jQuery);