Differences From Artifact [73ed093e1a]:
- File build/chrome/pin.js — part of check-in [2c6a5fb7dd] at 2016-02-13 10:05:49 on branch trunk — ChromeOS: Made PIN entry dialog much more robust (user: rkeene, size: 665) [annotate] [blame] [check-ins using]
To Artifact [6612ae670c]:
- File build/chrome/pin.js — part of check-in [16fd3e5408] at 2016-02-13 15:43:19 on branch trunk — ChromeOS: More work towards making the PIN entry more useful (user: rkeene, size: 700) [annotate] [blame] [check-ins using]
1 2 3 4 5 6 7 8 9 10 |
function clickOk() {
parentWindow.pinWindowDidWork = 1;
window.close();
return;
}
function clickCancel() {
|
< | |
1 2 3 4 5 6 7 8 9 |
function clickOk() {
parentWindow.pinWindowPINValue = document.getElementById('pin').value;
window.close();
return;
}
function clickCancel() {
|