38
39
40
41
42
43
44
45
|
document.getElementById('pin').onblur = function() {
setTimeout(function() {
if (document.activeElement.className != "button") {
focusPin();
}
}, 1);
}
}, 1);
|
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
|
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
document.getElementById('pin').onblur = function() {
setTimeout(function() {
if (document.activeElement.className != "button") {
focusPin();
}
}, 1);
}
document.getElementById('pin').onkeypress = function(keyEvent) {
if (!keyEvent) {
return(true);
}
if (!keyEvent.keyIdentifier) {
return(true);
}
if (keyEvent.keyIdentifier != "Enter") {
return(true);
}
clickOk();
return(false);
};
}, 1);
|