projects
/
Plinn.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Corrections messages pour réinitialisation de mot de passe.
[Plinn.git]
/
skins
/
ajax_scripts
/
ajax_form_manager.js
diff --git
a/skins/ajax_scripts/ajax_form_manager.js
b/skins/ajax_scripts/ajax_form_manager.js
index
fed198c
..
8bbd4e7
100644
(file)
--- a/
skins/ajax_scripts/ajax_form_manager.js
+++ b/
skins/ajax_scripts/ajax_form_manager.js
@@
-406,9
+406,13
@@
FormManager.prototype.loadResponse = function(req) {
break;
case 'base' :
var headBase = document.getElementsByTagName('base');
break;
case 'base' :
var headBase = document.getElementsByTagName('base');
- if (headBase.length) {
+ if (headBase.length
> 0
) {
headBase[0].setAttribute('href', element.getAttribute('href'));
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;
}
}
break;
}
@@
-431,7
+435,8
@@
FormManager.prototype.loadResponse = function(req) {
var onAfterPopulate = this.onAfterPopulate;
onAfterPopulate();
this.scrollToPortalMessage();
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() {
};
FormManager.prototype.scrollToPortalMessage = function() {