Skip to content

Commit

Permalink
Fix: inputMask doesn't work for Multiple Text question #171
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewtelnov committed Apr 18, 2020
1 parent 97b4b0d commit 445bd15
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/inputmask.js
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ function init(Survey) {
for (var i = 0; i < question.items.length; i++) {
var item = question.items[i];
if (item.inputMask != "none" || item.inputFormat) {
var input = el.querySelector("#" + item.id);
var input = el.querySelector("#" + item.editor.inputId);
if (input) {
this.applyInputMask(item, input);
}
Expand Down

0 comments on commit 445bd15

Please sign in to comment.