This is just some static backup of the original site, don't expect every link to work!

Ignore:
Timestamp:
Oct 5, 2010, 3:33:18 PM (12 years ago)
Author:
rene <just@…>
Branches:
ng_0.6, ng_0.8, ng_0.9
Children:
213e1e
Parents:
dd1f45
Message:

changed layout of dialog

File:
1 edited

Legend:

Unmodified
Added
Removed
  • chrome/content/v_identity/vI_rdfAccountMismatchDialog.js

    rdd1f45 r0852d9  
    3333        // display the relevant help-tags
    3434        document.getElementById("rdfAccountMismatchDialog_vbox_" + vI_rdfAccountMismatchDialog.type).removeAttribute("hidden");
     35        document.getElementById("rdfAccountMismatchDialog_listhead_" + vI_rdfAccountMismatchDialog.type).removeAttribute("hidden");
    3536       
    3637        for (var i = 0; i < vI_rdfAccountMismatchDialog.mismatchItems.length; i++) {
    37             var label = document.createElement("label");
    38             label.setAttribute("id", "mismatchLine_" + i);
    39             label.setAttribute("class", "mismatchLine");
    40             label.setAttribute("type",vI_rdfAccountMismatchDialog.type);
    41             label.setAttribute("oldkey",vI_rdfAccountMismatchDialog.mismatchItems[i].oldkey);
    42             label.setAttribute("label",vI_rdfAccountMismatchDialog.mismatchItems[i].label);
    43             label.setAttribute("ext1",vI_rdfAccountMismatchDialog.mismatchItems[i].ext1);
    44             label.setAttribute("ext2",vI_rdfAccountMismatchDialog.mismatchItems[i].ext2);
    45             label.setAttribute("count",vI_rdfAccountMismatchDialog.mismatchItems[i].count);
    46             document.getElementById("rdfAccountMismatchDialog_groupbox").appendChild(label)
     38//             var label = document.createElement("label");
     39            var listitem = document.createElement("listitem");
     40            listitem.setAttribute("id", "mismatchLine_" + i);
     41            listitem.setAttribute("class", "mismatchLine");
     42            listitem.setAttribute("type",vI_rdfAccountMismatchDialog.type);
     43            listitem.setAttribute("oldkey",vI_rdfAccountMismatchDialog.mismatchItems[i].oldkey);
     44            listitem.setAttribute("label",vI_rdfAccountMismatchDialog.mismatchItems[i].label);
     45            listitem.setAttribute("ext1",vI_rdfAccountMismatchDialog.mismatchItems[i].ext1);
     46            listitem.setAttribute("ext2",vI_rdfAccountMismatchDialog.mismatchItems[i].ext2);
     47            listitem.setAttribute("count",vI_rdfAccountMismatchDialog.mismatchItems[i].count);
     48            document.getElementById("rdfAccountMismatchDialog_listbox").appendChild(listitem)
    4749        }
    4850    },
Note: See TracChangeset for help on using the changeset viewer.