117
118
119
120
121
122
123
124
125
126
127
128
129
130
|
}
}, function(pinWindow) {
if (!pinWindow) {
console.log("[cackey] No window was provided for PIN entry, this will not go well.");
return;
}
pinWindow.drawAttention();
pinWindow.focus();
/*
* Register a handler to handle the window being closed without
* having sent anything
*/
|
>
|
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
|
}
}, function(pinWindow) {
if (!pinWindow) {
console.log("[cackey] No window was provided for PIN entry, this will not go well.");
return;
}
pinWindow.drawAttention();
pinWindow.focus();
/*
* Register a handler to handle the window being closed without
* having sent anything
*/
|