// source --> https://www.larochebeaucourt.fr/wp-content/plugins/elegant-calendar/assets/js/calendar-front.js?ver=1.1.0 
(function($){

    "use strict";

    var ElegantCalendarFront = {

        init: function()
        {

            this._bind();
        },

        /**
         * Binds calendars for the ElegantCalendarFront.
         *
         * @since 1.0.0
         * @access private
         * @method _bind
         */
        _bind: function()
        {

        },
    };

    /**
     * Initialize ElegantCalendarFront
     */
    $(function(){
        ElegantCalendarFront.init();
    });

})(jQuery);