is mentioned to mention a contractid, including in identifiers. r=warren git-svn-id: svn://10.0.0.236/trunk@79036 18797224-902f-48f8-a5cc-f745e15eee43
20 lines
484 B
JavaScript
20 lines
484 B
JavaScript
|
|
|
|
function viewSignons()
|
|
{
|
|
window.openDialog("chrome://wallet/content/SignonViewer.xul","","modal=yes,chrome,resizable=no");
|
|
}
|
|
|
|
function viewWallet()
|
|
{
|
|
window.openDialog("chrome://wallet/content/WalletEditor.xul","","modal=yes,chrome,resizable=no");
|
|
}
|
|
|
|
function changePasswords()
|
|
{
|
|
wallet = Components.classes['@mozilla.org/wallet;1'];
|
|
wallet = wallet.getService();
|
|
wallet = wallet.QueryInterface(Components.interfaces.nsIWalletService);
|
|
wallet.WALLET_ChangePassword();
|
|
}
|