Skip to content

Commit

Permalink
Use getFormDomId() in appRender() instead of the id in the forms iter…
Browse files Browse the repository at this point in the history
…ator.
  • Loading branch information
signalpoint committed Jun 9, 2018
1 parent 2c619a8 commit 99c1f20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/includes/render.inc.js
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ dg.appRender = function(content) {
var forms = dg.loadForms();
for (var id in forms) {
if (!forms.hasOwnProperty(id)) { continue; }
dg.formAttachSubmissionHandler(id);
dg.formAttachSubmissionHandler(forms[id].getFormDomId());
}

}
Expand Down

0 comments on commit 99c1f20

Please sign in to comment.