From: Benoît Pin Date: Mon, 19 May 2014 14:21:10 +0000 (+0200) Subject: Ajout d'un paramètre « noHistory » pour que les envoise de formulaires n'aient pas... X-Git-Url: https://scm.cri.mines-paristech.fr/git/Plinn.git/commitdiff_plain/810601035a462fdbcb3ebbcdf63aba8ae5350f54?ds=inline;hp=8e749694f2084fb9f25d821757fa61b1aee7fcc7 Ajout d'un paramètre « noHistory » pour que les envoise de formulaires n'aient pas d'entrées dans l'historique. --- diff --git a/skins/ajax_scripts/ajax_form_manager.js b/skins/ajax_scripts/ajax_form_manager.js index 8bbd4e7..248f183 100644 --- a/skins/ajax_scripts/ajax_form_manager.js +++ b/skins/ajax_scripts/ajax_form_manager.js @@ -8,12 +8,13 @@ var FormManager; (function(){ -FormManager = function(form, responseTextDest, lazy) { +FormManager = function(form, responseTextDest, lazy, noHistory) { if (form.elements.namedItem("noAjax")) {return;} this.form = form; this.responseTextDest = responseTextDest; this.lazy = lazy; + this.noHistory = noHistory; var thisManager = this; this.form.onsubmit = function(evt) { thisManager.submit(evt); }; this.form.onclick = function(evt) { thisManager.click(evt); }; @@ -436,7 +437,7 @@ FormManager.prototype.loadResponse = function(req) { onAfterPopulate(); this.scrollToPortalMessage(); var url = this.form.action; - history.pushState(url, document.title, url); + if (!this.noHistory){ history.pushState(url, document.title, url); } }; FormManager.prototype.scrollToPortalMessage = function() {