mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 12:05:37 +00:00
Don't capture form submits to new windows.
This commit is contained in:
parent
938bf14d16
commit
9a5baafde7
@ -163,9 +163,10 @@
|
|||||||
// which means the browser auto-selects the first available form button.
|
// which means the browser auto-selects the first available form button.
|
||||||
// This might be an unrelated button of the form field,
|
// This might be an unrelated button of the form field,
|
||||||
// or a destructive action (if "save" is not available, or not on first position).
|
// or a destructive action (if "save" is not available, or not on first position).
|
||||||
if(button) this.closest('.cms-container').submitForm(this, button);
|
if(this.prop("target") != "_blank") {
|
||||||
|
if(button) this.closest('.cms-container').submitForm(this, button);
|
||||||
return false;
|
return false;
|
||||||
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
x
Reference in New Issue
Block a user