break;
case 'base' :
var headBase = document.getElementsByTagName('base');
- if (headBase.length) {
+ if (headBase.length > 0) {
headBase[0].setAttribute('href', element.getAttribute('href'));
- console.info('set base href:', headBase[0].href);
+ }
+ else {
+ headBase = document.createElement('base');
+ headBase.setAttribute('href', element.getAttribute('href'));
+ document.head.appendChild(headBase);
}
break;
}
var onAfterPopulate = this.onAfterPopulate;
onAfterPopulate();
this.scrollToPortalMessage();
- history.pushState(absolute_url(), document.title, absolute_url());
+ var url = this.form.action;
+ history.pushState(url, document.title, url);
};
FormManager.prototype.scrollToPortalMessage = function() {