(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); };
var onAfterPopulate = this.onAfterPopulate;
onAfterPopulate();
this.scrollToPortalMessage();
- history.pushState(absolute_url(), document.title, absolute_url());
+ var url = this.form.action;
+ if (!this.noHistory){ history.pushState(url, document.title, url); }
};
FormManager.prototype.scrollToPortalMessage = function() {