Skip to content
Snippets Groups Projects
Commit 5a37a759 authored by Steven Wittens's avatar Steven Wittens
Browse files

Fix JS in:

- #31968: IE
- #41743: Safari
parent 4b0067ee
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -111,7 +111,11 @@ function HTTPPost(uri, callbackFunction, callbackParameter, object) {
*/
function redirectFormButton(uri, button, handler) {
// Insert the iframe
var iframe = document.createElement('iframe');
// Note: some browsers require the literal name/id attributes on the tag,
// some want them set through JS. We do both.
var div = document.createElement('div');
div.innerHTML = '<iframe name="redirect-target" id="redirect-target" class="redirect"></iframe>';
var iframe = div.firstChild;
with (iframe) {
name = 'redirect-target';
setAttribute('name', 'redirect-target');
......@@ -126,7 +130,7 @@ function redirectFormButton(uri, button, handler) {
document.body.appendChild(iframe);
// Trap the button
button.onfocus = function() {
button.onmouseover = button.onfocus = function() {
button.onclick = function() {
// Prepare variables for use in anonymous function.
var button = this;
......@@ -150,7 +154,7 @@ function redirectFormButton(uri, button, handler) {
return true;
}
}
button.onblur = function() {
button.onmouseout = button.onblur = function() {
button.onclick = null;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment