in js/needinfo.js [539:553]
function queryAccount() {
let dlg = document.getElementById("prompt-query-account");
dlg.returnValue = "cancel";
dlg.addEventListener('close', (event) => {
if (dlg.returnValue == 'confirm') {
let to = getRedirectToAccount();
if (to != null) {
// Open a details page for a specific account
openDetailsForAccount(to);
}
} else {
}
}, { once: true });
dlg.show();
}