mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-09 09:18:42 +09:00
Bug 1288557 - Part 1: Replace custom exceptions dialog with usage of permissions
This commit is contained in:
parent
fd1ae7e583
commit
997e7cf404
3 changed files with 20 additions and 6 deletions
|
|
@ -131,9 +131,21 @@ var gSecurityPane = {
|
|||
*/
|
||||
showPasswordExceptions: function ()
|
||||
{
|
||||
let bundlePrefs = document.getElementById("bundlePreferences");
|
||||
let params = {
|
||||
blockVisible: true,
|
||||
sessionVisible: false,
|
||||
allowVisible: false,
|
||||
hideStatusColumn: true,
|
||||
prefilledHost: "",
|
||||
permissionType: "login-saving",
|
||||
windowTitle: bundlePrefs.getString("savedLoginsExceptions_title"),
|
||||
introText: bundlePrefs.getString("savedLoginsExceptions_desc")
|
||||
};
|
||||
|
||||
document.documentElement.openWindow("Toolkit:PasswordManagerExceptions",
|
||||
"chrome://passwordmgr/content/passwordManagerExceptions.xul",
|
||||
"", null);
|
||||
"chrome://browser/content/preferences/permissions.xul",
|
||||
null, params);
|
||||
},
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue