2018-04-02 08:29:19 +02:00
|
|
|
/**
|
2021-02-17 13:51:12 +01:00
|
|
|
* This file is part of Zwii.
|
2018-04-02 08:29:19 +02:00
|
|
|
* For full copyright and license information, please see the LICENSE
|
|
|
|
* file that was distributed with this source code.
|
|
|
|
*
|
|
|
|
* @author Rémi Jean <remi.jean@outlook.com>
|
|
|
|
* @copyright Copyright (C) 2008-2018, Rémi Jean
|
2021-02-17 13:49:58 +01:00
|
|
|
* @author Frédéric Tempez <frederic.tempez@outlook.com>
|
2021-12-18 10:25:33 +01:00
|
|
|
* @copyright Copyright (C) 2018-2022, Frédéric Tempez
|
2018-04-02 08:29:19 +02:00
|
|
|
* @license GNU General Public License, version 3
|
2020-09-01 20:48:40 +02:00
|
|
|
* @link http://zwiicms.fr/
|
2018-04-02 08:29:19 +02:00
|
|
|
*/
|
|
|
|
|
2019-05-02 13:21:48 +02:00
|
|
|
|
|
|
|
// Lien de connexion
|
|
|
|
$("#blogEditMailNotification").on("change", function() {
|
|
|
|
if($(this).is(":checked")) {
|
|
|
|
$("#formConfigGroup").show();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$("#formConfigGroup").hide();
|
|
|
|
}
|
|
|
|
}).trigger("change");
|
|
|
|
|
|
|
|
|
2018-04-02 08:29:19 +02:00
|
|
|
/**
|
|
|
|
* Soumission du formulaire pour enregistrer en brouillon
|
|
|
|
*/
|
|
|
|
$("#blogEditDraft").on("click", function() {
|
|
|
|
$("#blogEditState").val(0);
|
|
|
|
$("#blogEditForm").trigger("submit");
|
2020-07-11 19:44:02 +02:00
|
|
|
});
|
|
|
|
|
2020-07-16 18:50:57 +02:00
|
|
|
/**
|
|
|
|
* Options de commentaires
|
|
|
|
*/
|
2020-10-11 18:36:20 +02:00
|
|
|
$("#blogEditCommentClose").on("change", function() {
|
2020-07-11 19:44:02 +02:00
|
|
|
if ($(this).is(':checked') ) {
|
2020-10-11 18:36:20 +02:00
|
|
|
$(".commentOptionsWrapper").slideUp();
|
2020-07-11 19:44:02 +02:00
|
|
|
} else {
|
2020-10-11 18:36:20 +02:00
|
|
|
$(".commentOptionsWrapper").slideDown();
|
2020-07-11 19:44:02 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2020-10-11 18:36:20 +02:00
|
|
|
$("#blogEditCommentNotification").on("change", function() {
|
2020-07-11 19:44:02 +02:00
|
|
|
if ($(this).is(':checked') ) {
|
2020-10-11 18:36:20 +02:00
|
|
|
$("#blogEditCommentGroupNotification").slideDown();
|
2020-07-11 19:44:02 +02:00
|
|
|
} else {
|
2020-10-11 18:36:20 +02:00
|
|
|
$("#blogEditCommentGroupNotification").slideUp();
|
2020-07-11 19:44:02 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
$( document).ready(function() {
|
|
|
|
|
|
|
|
if ($("#blogEditCloseComment").is(':checked') ) {
|
2020-10-11 18:36:20 +02:00
|
|
|
$(".commentOptionsWrapper").slideUp();
|
2020-07-11 19:44:02 +02:00
|
|
|
} else {
|
2020-10-11 18:36:20 +02:00
|
|
|
$(".commentOptionsWrapper").slideDown();
|
2020-07-11 19:44:02 +02:00
|
|
|
}
|
|
|
|
|
2020-10-11 18:36:20 +02:00
|
|
|
if ($("#blogEditCommentNotification").is(':checked') ) {
|
|
|
|
$("#blogEditCommentGroupNotification").slideDown();
|
2020-07-11 19:44:02 +02:00
|
|
|
} else {
|
2020-10-11 18:36:20 +02:00
|
|
|
$("#blogEditCommentGroupNotification").slideUp();
|
2020-07-11 19:44:02 +02:00
|
|
|
}
|
2018-04-02 08:29:19 +02:00
|
|
|
});
|