Merge pull request #648 from ajshort/cms-form-new-window

Don't capture form submits to new windows.
This commit is contained in:
Ingo Schommer 2012-07-17 01:51:41 -07:00
commit 872e2a74c9

View File

@ -163,9 +163,10 @@
// which means the browser auto-selects the first available form button.
// This might be an unrelated button of the form field,
// or a destructive action (if "save" is not available, or not on first position).
if(button) this.closest('.cms-container').submitForm(this, button);
return false;
if(this.prop("target") != "_blank") {
if(button) this.closest('.cms-container').submitForm(this, button);
return false;
}
},
/**