ZwiiCMS/module/blog/view/add/add.js.php

55 lines
1.4 KiB
PHP
Raw Normal View History

2018-04-02 08:29:19 +02:00
/**
2021-02-17 13:49:58 +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>
* @copyright Copyright (C) 2018-2021, Frédéric Tempez
2018-04-02 08:29:19 +02:00
* @license GNU General Public License, version 3
* @link http://zwiicms.fr/
2018-04-02 08:29:19 +02:00
*/
/**
* Soumission du formulaire pour enregistrer en brouillon
*/
$("#blogAddDraft").on("click", function() {
$("#blogAddState").val(0);
$("#blogAddForm").trigger("submit");
2020-07-16 18:50:57 +02:00
});
/**
* Options de commentaires
*/
$("#blogAddCommentClose").on("change", function() {
2020-07-16 18:50:57 +02:00
if ($(this).is(':checked') ) {
$(".commentOptionsWrapper").slideUp();
2020-07-16 18:50:57 +02:00
} else {
$(".commentOptionsWrapper").slideDown();
2020-07-16 18:50:57 +02:00
}
});
$("#blogAddCommentNotification").on("change", function() {
2020-07-16 18:50:57 +02:00
if ($(this).is(':checked') ) {
$("#blogAddCommentGroupNotification").slideDown();
2020-07-16 18:50:57 +02:00
} else {
$("#blogAddCommentGroupNotification").slideUp();
2020-07-16 18:50:57 +02:00
}
});
$( document).ready(function() {
if ($("#blogAddCloseComment").is(':checked') ) {
$(".commentOptionsWrapper").slideUp();
2020-07-16 18:50:57 +02:00
} else {
$(".commentOptionsWrapper").slideDown();
2020-07-16 18:50:57 +02:00
}
if ($("#blogAddCommentNotification").is(':checked') ) {
$("#blogAddCommentGroupNotification").slideDown();
2020-07-16 18:50:57 +02:00
} else {
$("#blogAddCommentGroupNotification").slideUp();
2020-07-16 18:50:57 +02:00
}
2018-04-02 08:29:19 +02:00
});