jappixmini: use setPersistent to avoid password query window
parent
89473b5e03
commit
bec530c9bb
|
@ -24,12 +24,12 @@ function jappixmini_addon_set_client_secret(password) {
|
||||||
client_secret2 = str_sha1(salt2+password);
|
client_secret2 = str_sha1(salt2+password);
|
||||||
client_secret = client_secret1 + client_secret2;
|
client_secret = client_secret1 + client_secret2;
|
||||||
|
|
||||||
setDB('jappix-mini', 'client-secret', client_secret);
|
setPersistent('jappix-mini', 'client-secret', client_secret);
|
||||||
console.log("client secret set");
|
console.log("client secret set");
|
||||||
}
|
}
|
||||||
|
|
||||||
function jappixmini_addon_get_client_secret(callback) {
|
function jappixmini_addon_get_client_secret(callback) {
|
||||||
client_secret = getDB('jappix-mini', 'client-secret');
|
client_secret = getPersistent('jappix-mini', 'client-secret');
|
||||||
if (client_secret===null) {
|
if (client_secret===null) {
|
||||||
div = document.getElementById("#jappixmini-password-query-div");
|
div = document.getElementById("#jappixmini-password-query-div");
|
||||||
|
|
||||||
|
@ -50,7 +50,7 @@ function jappixmini_addon_get_client_secret(callback) {
|
||||||
jappixmini_addon_set_client_secret(password);
|
jappixmini_addon_set_client_secret(password);
|
||||||
div.remove();
|
div.remove();
|
||||||
|
|
||||||
client_secret = getDB('jappix-mini', 'client-secret');
|
client_secret = getPersistent('jappix-mini', 'client-secret');
|
||||||
callback(client_secret);
|
callback(client_secret);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue