blob: 8b5dcdf416372045992310003be8145fad65f3ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
/* 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(
Ci.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");
}
|