/** * 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 * @copyright Copyright (C) 2018-2020, Frédéric Tempez * @license GNU General Public License, version 3 * @link http://zwiicms.com/ */ $( document).ready(function() { $("#configBackupForm").submit( function(e){ console.log('click'); e.preventDefault(); $("body").addClass("loading"); var url = "getUrl(0); ?>/backup"; $.ajax({ type: "POST", url: url, data: $("form").serialize(), complete: function(r, s){ $("body").removeClass("loading"); $("body").append("
Sauvegarde générée avec succès !
"); $("#notification").delay("3000").fadeOut("1000"); }, }); }); });