Ajout d'un paramètre « noHistory » pour que les envoise de formulaires n'aient pas...
authorBenoît Pin <pin@cri.ensmp.fr>
Mon, 19 May 2014 14:21:10 +0000 (16:21 +0200)
committerBenoît Pin <pin@cri.ensmp.fr>
Mon, 19 May 2014 14:21:10 +0000 (16:21 +0200)
skins/ajax_scripts/ajax_form_manager.js

index 8bbd4e7..248f183 100644 (file)
@@ -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() {