ZwiiCMS/module/form/view/index/index.js.php
Fred 23a1e929a3 Revert "init"
This reverts commit 329f252d82f1b5a37f61375e19acb8c2ffcf4287.
2020-07-02 19:38:52 +02:00

25 lines
557 B
PHP

/**
* This file is part of Zwii.
*
* For full copyright and license information, please see the LICENSE
* file that was distributed with this source code.
*
* @author Frédéric Tempez <frederic.tempez@outlook.com>
* @copyright Copyright (C) 2008-2018, Frédéric Tempez
* @license GNU General Public License, version 3
* @link http://zwiicms.com/
*/
/**
* Paramétrage du format de date
*/
$(function() {
$(".datepicker").flatpickr({
altInput: true,
altFormat: "d/m/Y",
enableTime: false,
locale: "fr",
dateFormat: "d/m/Y"
});
});