keep two copies of CookieViewer.js in synch until bug 26020 is fixed properly

git-svn-id: svn://10.0.0.236/trunk@204304 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
morse%netscape.com 2006-07-27 14:48:43 +00:00
parent 55130628db
commit d2cb40be0e

View File

@ -347,7 +347,7 @@ function DeletePermissionSelected()
function DeleteAllPermissions() {
// delete selected item
gone_p += DeleteAllItems(permissions.length, "permtree_", "permissionlist");
gone_p += DeleteAllItems(permissions.length, "permtree_", "permissionslist");
if( !document.getElementById("removePermissions").disabled ) {
document.getElementById("removePermissions").setAttribute("disabled", "true")
}
@ -439,7 +439,8 @@ function DeleteAllImages() {
// function : <CookieViewer.js>::doOKButton();
// purpose : saves the changed settings and closes the dialog.
function onOK(){
var result = "|goneC|" + gone_c + "|goneP|" + gone_p + "|goneI|" + gone_i+ "|";
var result = "|goneC|" + gone_c + "|goneP|" + gone_p + "|goneI|" + gone_i +
"|block|" + document.getElementById("checkbox").checked +"|";
cookieviewer.SetValue(result, window);
return true;
}