We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03a25bd commit 4f2feedCopy full SHA for 4f2feed
Sudoku.js
@@ -535,10 +535,11 @@ window.onload = function() {
535
currentCell.candidatesElement.classList.add("candidates");
536
537
currentInput = currentCell.element.appendChild(document.createElement("input"));
538
- currentInput.type = "text";
539
540
if (/android|webos|iphone|ipad|ipod|blackberry/i.test(navigator.userAgent.toLowerCase())) {
541
currentInput.type = "tel";
+ } else {
542
+ currentInput.type = "text";
543
}
544
545
currentInput.tabIndex = tabIndex;
@@ -577,4 +578,4 @@ window.onload = function() {
577
578
cells.blankCellColor = "black";
579
updatePencilmarks();
580
-};
581
+};
0 commit comments