gecko-dev/suite/common/pref/pref-navigator.js
2006-05-17 02:24:52 +00:00

20 lines
490 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['component://netscape/wallet'];
wallet = wallet.getService();
wallet = wallet.QueryInterface(Components.interfaces.nsIWalletService);
wallet.WALLET_ChangePassword();
}