Skip to content

Commit

Permalink
Fixed JS (ES5) compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
jzaplet committed Mar 2, 2020
1 parent 3793e2f commit 6ca8eb2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/assets/Frontend/conversion/conversion.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,14 @@ $(function () {
var FORM_TRUE_TOKEN = $input_token.data('token');

setTimeout(function () {

$input_token.each(function () {
$(this).val(FORM_TRUE_TOKEN);
});

$input_token_check.each(function () {
$(this).val('');
});
}, FORM_TIMEOUT_SEC * 1_000);

}, FORM_TIMEOUT_SEC * 1000);
});

0 comments on commit 6ca8eb2

Please sign in to comment.