1
0
mirror of https://github.com/roytam1/UXP.git synced 2026-06-16 21:38:46 +00:00
Files
UXP/security/manager/pki/resources/content/protectedAuth.js
T

43 lines
978 B
JavaScript

/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
/* import-globals-from pippki.js */
"use strict";
function onLoad()
{
let protectedAuthThread =
window.arguments[0].QueryInterface(Components.interfaces.nsIProtectedAuthThread);
if (!protectedAuthThread) {
window.close();
return;
}
try {
let tokenName = protectedAuthThread.getTokenName();
let tag = document.getElementById("tokenName");
tag.setAttribute("value", tokenName);
window.setCursor("wait");
let obs = {
observe: function protectedAuthListenerObserve(subject, topic, data) {
if (topic == "operation-completed") {
window.close();
}
}
};
protectedAuthThread.login(obs);
} catch (exception) {
window.close();
}
}
function onClose()
{
window.setCursor("auto");
}