Improved Ctrl+arrows moving in field editing.

This commit is contained in:
Michal Čihař
2003-01-16 09:16:22 +00:00
parent db4e7a4f47
commit 1bc1b51b5d
3 changed files with 16 additions and 11 deletions

View File

@@ -90,6 +90,10 @@ function onKeyDownArrowsHandler(e) {
var id = "field_" + y + "_" + x;
var nO = document.getElementById(id);
if (!nO) {
var id = "field_" + y + "_" + x + "_0";
var nO = document.getElementById(id);
}
if (nO) break;
}