Skip to content

Commit 636436b

Browse files
committed
Fixed bug when setting the parameters
1 parent 7dcf24f commit 636436b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

feedback/js/process-forms.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ var ProcessForm = function (config) {
2323
'</div>' +
2424
'</div>'
2525
}
26-
for (prop in config) {
26+
for (var prop in config) {
2727
_config[prop] = config[prop];
2828
}
2929
this.getConfig = function () {

0 commit comments

Comments
 (0)