Skip to content

Commit 114aeab

Browse files
committed
[TASK] fixes dynamic example for IE10 in demo
1 parent 88ce9b7 commit 114aeab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ <h2>Fancy dynamic example</h2>
273273
<div class="col-md-12 col-xl-4 example-input" id="dynamic-example">
274274
<script>
275275
setTimeout(function () {
276-
const input = document.createElement("input");
276+
var input = document.createElement("input");
277277
input.setAttribute("type", "date");
278278
document.getElementById("dynamic-example").appendChild(input);
279279
}, 2000);

0 commit comments

Comments
 (0)