Skip to content

Commit

Permalink
Merge pull request #215 from tjmonsi/master
Browse files Browse the repository at this point in the history
Fixes breaking on iron-form when allow-redirect is on and transpiled in Babel via Webpack
  • Loading branch information
notwaldorf authored Sep 20, 2017
2 parents 5baa7c4 + af70a25 commit c7e7094
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion iron-form.html
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@
if (this.allowRedirect) {
// If we're submitting the form natively, then create a hidden element for
// each of the values.
for (element in json) {
for (var element in json) {
this.$.helper.appendChild(this._createHiddenElement(element, json[element]));
}

Expand Down

0 comments on commit c7e7094

Please sign in to comment.