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

71 lines
1.7 KiB
PHP
Raw Normal View History

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
* @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
*/
$("#blogEditCommentClose").on("change", function() {
2020-07-11 19:44:02 +02:00
if ($(this).is(':checked') ) {
$(".commentOptionsWrapper").slideUp();
2020-07-11 19:44:02 +02:00
} else {
$(".commentOptionsWrapper").slideDown();
2020-07-11 19:44:02 +02:00
}
});
$("#blogEditCommentNotification").on("change", function() {
2020-07-11 19:44:02 +02:00
if ($(this).is(':checked') ) {
$("#blogEditCommentGroupNotification").slideDown();
2020-07-11 19:44:02 +02:00
} else {
$("#blogEditCommentGroupNotification").slideUp();
2020-07-11 19:44:02 +02:00
}
});
$( document).ready(function() {
if ($("#blogEditCloseComment").is(':checked') ) {
$(".commentOptionsWrapper").slideUp();
2020-07-11 19:44:02 +02:00
} else {
$(".commentOptionsWrapper").slideDown();
2020-07-11 19:44:02 +02:00
}
if ($("#blogEditCommentNotification").is(':checked') ) {
$("#blogEditCommentGroupNotification").slideDown();
2020-07-11 19:44:02 +02:00
} else {
$("#blogEditCommentGroupNotification").slideUp();
2020-07-11 19:44:02 +02:00
}
2022-03-15 09:16:42 +01:00
// Permalink
$('#blogEditTitle').furl({id:'blogEditPermalink', seperate: '_' });
2018-04-02 08:29:19 +02:00
});