2018-04-02 08:29:19 +02:00
|
|
|
/**
|
|
|
|
* 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 Rémi Jean <remi.jean@outlook.com>
|
|
|
|
* @copyright Copyright (C) 2008-2018, Rémi Jean
|
2020-03-08 18:19:52 +01:00
|
|
|
* @author Frédéric Tempez <frederic.tempez@outlook.com>
|
|
|
|
* @copyright Copyright (C) 2018-2020, Frédéric Tempez
|
2018-04-02 08:29:19 +02:00
|
|
|
* @license GNU General Public License, version 3
|
|
|
|
* @link http://zwiicms.com/
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Confirmation de suppression
|
|
|
|
*/
|
|
|
|
$(".galleryConfigDelete").on("click", function() {
|
|
|
|
var _this = $(this);
|
|
|
|
return core.confirm("Êtes-vous sûr de vouloir supprimer cette galerie ?", function() {
|
|
|
|
$(location).attr("href", _this.attr("href"));
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2020-03-08 14:56:10 +01:00
|
|
|
|
|
|
|
/**
|
2020-03-08 18:19:52 +01:00
|
|
|
* Tri dynamique de la galerie
|
2020-03-08 14:56:10 +01:00
|
|
|
*/
|
|
|
|
$( document ).ready(function() {
|
2020-03-27 15:06:35 +01:00
|
|
|
|
|
|
|
$("#galleryTable").tableDnD({
|
2020-03-24 17:48:54 +01:00
|
|
|
onDrop: function(table, row) {
|
2020-03-27 15:06:35 +01:00
|
|
|
$("#galleryConfigResponse").val($.tableDnD.serialize());
|
|
|
|
},
|
|
|
|
serializeRegexp: "[^\_]*$"
|
2020-03-24 17:48:54 +01:00
|
|
|
});
|
2020-03-27 15:10:55 +01:00
|
|
|
});
|