gecko-dev/xpfe/components/prefwindow/resources/content/pref-navigator.js

20 lines
484 B
JavaScript
Raw Normal View History

2000-04-25 02:17:38 +00:00
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'];
2000-04-25 02:17:38 +00:00
wallet = wallet.getService();
wallet = wallet.QueryInterface(Components.interfaces.nsIWalletService);
wallet.WALLET_ChangePassword();
}