<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">jQuery(document).ready(function ($) {
    let flt = $('.elementor-date-time-picker');
    setTimeout(function () {
        $(".flatpickr-calendar").remove();
    },2000)
    setTimeout(function () {
        $(".flatpickr-calendar").remove();
    },1000)
    if (!flt.hasClass('elementor-persian-date')) {
        $(".flatpickr-calendar").remove();
        $('#flatpickr-css').remove();
        $('#flatpickr-js').remove();
        flt.pDatepicker({
            format: 'YYYY-MM-DD HH:mm',
            autoClose: true,
            timePicker: {
                enabled: true
            },
            formatter: function (unix) {
                console.log(unix)
                let date = new Date(unix);

                let year = date.getFullYear();
                let month = ('0' + (date.getMonth() + 1)).slice(-2);
                let day = ('0' + date.getDate()).slice(-2);
                let hours = ('0' + date.getHours()).slice(-2);
                let minutes = ('0' + date.getMinutes()).slice(-2);

                let formattedDate = year + '-' + month + '-' + day + ' ' + hours + ':' + minutes;

                return formattedDate;
            }
        });
    }
    console.log("test");
    console.log($(".elementor-persian-datepicker-editor,.elementor-persian-date"));
    $(document).on('click','.elementor-persian-datepicker-editor,.elementor-persian-date',function () {
        console.log($(this));
        $('.flatpickr-calendar').removeClass('open');
        let options = {
            format: "YYYY-MM-DD",
            initialValue: true,
            autoClose: true,

        };

        if ($(this).is('[min]')) {
            let dateString = $(this).attr('min');
            options.minDate = Date.parse(dateString);
            console.log(options.minDate);
        }

        if ($(this).is('[max]')) {
            let dateString = $(this).attr('max');
            options.maxDate = Date.parse(dateString);
            console.log(options.maxDate);
        }

        $(this).pDatepicker(options);
        $(".flatpickr-calendar").remove();
        $('#flatpickr-css').remove();
        $('#flatpickr-js').remove();
    });

    let pdatepicker = $('.elementor-persian-date');

    if (pdatepicker.length) {
        let options = {
            format: "YYYY-MM-DD",
            initialValue: true,
            autoClose: true,

        };

        if (pdatepicker.is('[min]')) {
            let dateString = pdatepicker.attr('min');
            options.minDate = Date.parse(dateString);
            console.log(options.minDate);
        }

        if (pdatepicker.is('[max]')) {
            let dateString = pdatepicker.attr('max');
            options.maxDate = Date.parse(dateString);
            console.log(options.maxDate);
        }

        pdatepicker.pDatepicker(options);
        $(".flatpickr-calendar").remove();
        $('#flatpickr-css').remove();
        $('#flatpickr-js').remove();
    }
});

</pre></body></html>